Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
37216f8
Prevent people from assigning me as a PR reviewer
jyn514 Jul 26, 2023
4315ba6
tests/ui/proc-macro/*: Migrate FIXMEs to check-pass
Enselic Jul 27, 2023
66aa2ef
Move Res check into `should_ignore_res`
GuillaumeGomez Jul 27, 2023
4e93b5a
Move `inherits_doc_hidden` and `should_ignore_res` into `clean/utils.rs`
GuillaumeGomez Jul 27, 2023
37076c9
Don't attempt to compute layout of type referencing error
compiler-errors Jul 16, 2023
77fa702
Fix aksama template
compiler-errors Jul 17, 2023
d45eb41
Dont report CTFE errors that are due to references-error layouts
compiler-errors Jul 27, 2023
9454916
Fix switch-stdout test for none unix/windows platforms
raoulstrackx Jul 28, 2023
8577921
btree/map.rs: remove "Basic usage" text
tshepang Jul 28, 2023
0457eda
doc: replace wrong punctuation mark
tshepang Jul 28, 2023
8548689
Fix issue_15149 test for the SGX target
raoulstrackx Jul 28, 2023
65f311d
Group `write` calls when possible and use new format args
GuillaumeGomez Jul 27, 2023
c59c3f1
Rollup merge of #113773 - compiler-errors:err-layout-bail, r=cjgillot
matthiaskrgr Jul 28, 2023
106a2fc
Rollup merge of #114107 - jyn514:vacation, r=ehuss
matthiaskrgr Jul 28, 2023
d694408
Rollup merge of #114124 - Enselic:proc-fixme, r=cjgillot
matthiaskrgr Jul 28, 2023
3461cd5
Rollup merge of #114129 - GuillaumeGomez:rustdoc-cleanup, r=notriddle
matthiaskrgr Jul 28, 2023
7d30c5d
Rollup merge of #114171 - fortanix:raoul/fix_switch-stdout_test, r=wo…
matthiaskrgr Jul 28, 2023
cef052f
Rollup merge of #114172 - fortanix:raoul/fix_process-spawning_test, r…
matthiaskrgr Jul 28, 2023
a17acec
Rollup merge of #114173 - tshepang:patch-1, r=workingjubilee
matthiaskrgr Jul 28, 2023
2b2fa47
Rollup merge of #114174 - tshepang:patch-6, r=workingjubilee
matthiaskrgr Jul 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix aksama template
  • Loading branch information
compiler-errors committed Jul 27, 2023
commit 77fa702b639f941aab7462ca6e3562f793f54fef
5 changes: 5 additions & 0 deletions src/librustdoc/html/templates/type_layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ <h2 id="layout" class="small-section-header"> {# #}
<strong>Note:</strong> Encountered an error during type layout; {#+ #}
the type was too big. {# #}
</p> {# #}
{% when Err(LayoutError::ReferencesError(_)) %}
<p> {# #}
<strong>Note:</strong> Encountered an error during type layout; {#+ #}
the type references errors. {# #}
</p> {# #}
{% when Err(LayoutError::NormalizationFailure(_, _)) %}
<p> {# #}
<strong>Note:</strong> Encountered an error during type layout; {#+ #}
Expand Down