Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
86562b4
Use `Iterator::find` instead of open-coding it
LingMan Jun 1, 2021
51d98e3
Update the documentation of `-C force-unwind-tables`
Jun 3, 2021
c176e04
Add debug info tests for range, fix-sized array, and cell types
nanguye Mar 30, 2021
eb3fd6d
Default panic message should print Box<dyn Any>
reaganmcf Jun 6, 2021
570ba09
Fix invalid weight for type pages
GuillaumeGomez Jun 6, 2021
4597362
Add test to check that font-weight is correctly set on type page
GuillaumeGomez Jun 6, 2021
8330233
Update testsuite to match new panic msg
reaganmcf Jun 6, 2021
a0aabf7
:arrow_up: rust-analyzer
lnicola Jun 7, 2021
4ca7a11
Fix integration of codeblocks in search result description
GuillaumeGomez Jun 7, 2021
314ef59
Add test to ensure the result descripton is correctly handling codebl…
GuillaumeGomez Jun 7, 2021
a20870b
Comment out unused error codes in error_codes.rs
FabianWolff Jun 7, 2021
c01d63a
Add E0316.md
FabianWolff Jun 7, 2021
09307a3
Bless ui/where-clauses/where-for-self.rs test
FabianWolff Jun 7, 2021
fb92c92
Remove lifetime hack
camsteffen Jun 7, 2021
5aa188a
Correct type signature in doc for Bound::as_mut
glittershark Jun 7, 2021
fddf012
Clarify documentation of slice sorting methods
Lionelf329 Jun 4, 2021
b7c611e
Rollup merge of #85448 - nanguye2496:nanguye2496/debuginfo_tests, r=M…
JohnTitor Jun 8, 2021
9df63ac
Rollup merge of #85906 - LingMan:iter_find, r=matthewjasper
JohnTitor Jun 8, 2021
97a7828
Rollup merge of #85951 - hyd-dev:force-unwind-tables, r=steveklabnik
JohnTitor Jun 8, 2021
040c912
Rollup merge of #85985 - Lionelf329:master, r=joshtriplett
JohnTitor Jun 8, 2021
f51634d
Rollup merge of #86074 - reaganmcf:iss-86039, r=jyn514
JohnTitor Jun 8, 2021
a1e7ee2
Rollup merge of #86078 - GuillaumeGomez:type-page-font-weight, r=jsha
JohnTitor Jun 8, 2021
8e1b959
Rollup merge of #86090 - lnicola:rust-analyzer-2021-06-07, r=jonas-sc…
JohnTitor Jun 8, 2021
dad96ce
Rollup merge of #86095 - GuillaumeGomez:search-description-codeblock,…
JohnTitor Jun 8, 2021
7606a8c
Rollup merge of #86096 - FabianWolff:ec-E0316, r=GuillaumeGomez
JohnTitor Jun 8, 2021
e0464fc
Rollup merge of #86101 - glittershark:bound-as-mut-doc-fix, r=m-ou-se
JohnTitor Jun 8, 2021
ef579cc
Rollup merge of #86103 - camsteffen:lifetime-hack, r=jackh726
JohnTitor Jun 8, 2021
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
Comment out unused error codes in error_codes.rs
  • Loading branch information
FabianWolff committed Jun 7, 2021
commit a20870bdb9ecce8af7acb2db13177fc52f890f92
30 changes: 15 additions & 15 deletions compiler/rustc_error_codes/src/error_codes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -553,8 +553,8 @@ E0783: include_str!("./error_codes/E0783.md"),
E0311, // thing may not live long enough
E0313, // lifetime of borrowed pointer outlives lifetime of captured
// variable
E0314, // closure outlives stack frame
E0315, // cannot invoke closure outside of its lifetime
// E0314, // closure outlives stack frame
// E0315, // cannot invoke closure outside of its lifetime
E0316, // nested quantification of lifetimes
// E0319, // trait impls for defaulted traits allowed just for structs/enums
E0320, // recursive overflow during dropck
Expand Down Expand Up @@ -584,21 +584,21 @@ E0783: include_str!("./error_codes/E0783.md"),
// E0470, removed
// E0471, // constant evaluation error (in pattern)
E0472, // llvm_asm! is unsupported on this target
E0473, // dereference of reference outside its lifetime
E0474, // captured variable `..` does not outlive the enclosing closure
E0475, // index of slice outside its lifetime
// E0473, // dereference of reference outside its lifetime
// E0474, // captured variable `..` does not outlive the enclosing closure
// E0475, // index of slice outside its lifetime
E0476, // lifetime of the source pointer does not outlive lifetime bound...
E0479, // the type `..` (provided as the value of a type parameter) is...
E0480, // lifetime of method receiver does not outlive the method call
E0481, // lifetime of function argument does not outlive the function call
// E0479, // the type `..` (provided as the value of a type parameter) is...
// E0480, // lifetime of method receiver does not outlive the method call
// E0481, // lifetime of function argument does not outlive the function call
E0482, // lifetime of return value does not outlive the function call
E0483, // lifetime of operand does not outlive the operation
E0484, // reference is not valid at the time of borrow
E0485, // automatically reference is not valid at the time of borrow
E0486, // type of expression contains references that are not valid during..
E0487, // unsafe use of destructor: destructor might be called while...
E0488, // lifetime of variable does not enclose its declaration
E0489, // type/lifetime parameter not in scope here
// E0483, // lifetime of operand does not outlive the operation
// E0484, // reference is not valid at the time of borrow
// E0485, // automatically reference is not valid at the time of borrow
// E0486, // type of expression contains references that are not valid during..
// E0487, // unsafe use of destructor: destructor might be called while...
// E0488, // lifetime of variable does not enclose its declaration
// E0489, // type/lifetime parameter not in scope here
E0490, // a value of type `..` is borrowed for too long
E0498, // malformed plugin attribute
E0514, // metadata version mismatch
Expand Down