rust/tests/ui/parser
bors 2831701757 Auto merge of #114292 - estebank:issue-71039, r=b-naber
More detail when expecting expression but encountering bad macro argument

On nested macro invocations where the same macro fragment changes fragment type from one to the next, point at the chain of invocations and at the macro fragment definition place, explaining that the change has occurred.

Fix #71039.

```
error: expected expression, found pattern `1 + 1`
  --> $DIR/trace_faulty_macros.rs:49:37
   |
LL |     (let $p:pat = $e:expr) => {test!(($p,$e))};
   |                   -------                -- this is interpreted as expression, but it is expected to be pattern
   |                   |
   |                   this macro fragment matcher is expression
...
LL |     (($p:pat, $e:pat)) => {let $p = $e;};
   |               ------                ^^ expected expression
   |               |
   |               this macro fragment matcher is pattern
...
LL |     test!(let x = 1+1);
   |     ------------------
   |     |             |
   |     |             this is expected to be expression
   |     in this macro invocation
   |
   = note: when forwarding a matched fragment to another macro-by-example, matchers in the second macro will see an opaque AST of the fragment type, not the underlying tokens
   = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
```
2023-11-17 20:57:12 +00:00
..
assoc Move some tests around 2023-10-03 21:31:27 +00:00
attribute Move some tests around 2023-10-09 19:24:05 +00:00
char Move /src/test to /tests 2023-01-11 09:32:08 +00:00
diff-markers When encountering unclosed delimiters during parsing, check for diff markers 2023-10-30 00:56:46 +00:00
issues Rollup merge of #117990 - estebank:issue-100825-part-deux, r=Nilstrieb 2023-11-17 00:41:24 +01:00
macro Add a note to duplicate diagnostics 2023-10-05 01:04:41 +00:00
mismatched-braces Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
raw Migrate rustc_parse to derive diagnostics 2023-02-06 14:40:35 +00:00
recover Fix code indentation 2023-11-16 21:54:04 +00:00
shebang Add explanatory note to 'expected item' error 2023-09-06 09:05:07 +05:30
suggest_misplaced_generics fix formatting + test syntax 2023-02-01 18:11:37 +11:00
anon-enums-are-ambiguous.rs Add a test 2023-02-02 05:54:35 +00:00
ascii-only-character-escape.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
ascii-only-character-escape.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
async-with-nonterminal-block.rs Support interpolated block for try and async 2023-07-22 15:22:12 +00:00
bad-char-literals.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-char-literals.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-crate-name.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-crate-name.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-escape-suggest-raw-string.rs Use a better link 2023-06-10 14:46:11 -04:00
bad-escape-suggest-raw-string.stderr Use a better link 2023-06-10 14:46:11 -04:00
bad-fn-ptr-qualifier.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-fn-ptr-qualifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-fn-ptr-qualifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-if-statements.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-if-statements.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-interpolated-block.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-interpolated-block.stderr Add suggestion for bad block fragment error 2023-06-23 19:18:20 +00:00
bad-let-as-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-let-as-field.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-lit-suffixes.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-lit-suffixes.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-match.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-match.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-name.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-name.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-pointer-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-pointer-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-recover-kw-after-impl.rs Do not eagerly recover for bad impl-trait in macros 2023-02-08 17:56:08 +00:00
bad-recover-ty-after-impl.rs Do not eagerly recover for bad impl-trait in macros 2023-02-08 17:56:08 +00:00
bad-struct-following-where.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-struct-following-where.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-value-ident-false.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-value-ident-false.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-value-ident-true.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-value-ident-true.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bare-struct-body.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bare-struct-body.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bastion-of-the-turbofish.rs Update bastion-of-the-turbofish.rs 2023-01-30 14:22:41 +00:00
better-expected.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
better-expected.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bind-struct-early-modifiers.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bind-struct-early-modifiers.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
block-no-opening-brace.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
block-no-opening-brace.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bound-single-question-mark.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bound-single-question-mark.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime-where-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime-where-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime-where.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime-where.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-lifetime.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-obj-parens.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-type-where.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-type-where.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bounds-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
brace-in-let-chain.rs Correctly handle while-let-chains 2023-11-10 12:13:53 -08:00
brace-in-let-chain.stderr Move unclosed delim errors to separate function 2023-11-11 13:39:08 -08:00
break-in-unlabeled-block-in-macro.rs Account for macros 2023-10-09 22:48:10 +00:00
break-in-unlabeled-block-in-macro.stderr Account for macros 2023-10-09 22:48:10 +00:00
break-in-unlabeled-block.fixed fix 2023-10-09 19:24:05 +00:00
break-in-unlabeled-block.rs Suggest labeling block if break is in bare block 2023-10-09 19:24:05 +00:00
break-in-unlabeled-block.stderr Suggest labeling block if break is in bare block 2023-10-09 19:24:05 +00:00
builtin-syntax.rs Add feature gate 2023-05-05 21:44:48 +02:00
builtin-syntax.stderr Add feature gate 2023-05-05 21:44:48 +02:00
byte-literals.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
byte-literals.stderr Use a better link 2023-06-10 14:46:11 -04:00
byte-string-literals.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
byte-string-literals.stderr Use a better link 2023-06-10 14:46:11 -04:00
can-begin-expr-check.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
can-begin-expr-check.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
chained-comparison-suggestion.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
chained-comparison-suggestion.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
circular_modules_hello.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
circular_modules_main.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
circular_modules_main.stderr Special-case item attributes in the suggestion output 2023-04-12 22:50:10 +00:00
class-implements-bad-trait.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
class-implements-bad-trait.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
closure-return-syntax.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
closure-return-syntax.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
column-offset-1-based.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
column-offset-1-based.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-param-decl-on-type-instead-of-impl.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-param-decl-on-type-instead-of-impl.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
constraints-before-generic-args-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
constraints-before-generic-args-syntactic-pass.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deep-unmatched-angle-brackets.rs Avoid unbounded O(n^2) when parsing nested type args 2023-10-25 19:07:34 +00:00
deep-unmatched-angle-brackets.stderr Avoid unbounded O(n^2) when parsing nested type args 2023-10-25 19:07:34 +00:00
default-on-wrong-item-kind.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
default-on-wrong-item-kind.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
default-unmatched-assoc.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
default-unmatched-assoc.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
default-unmatched-extern.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
default-unmatched-extern.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
default-unmatched.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
default-unmatched.stderr Add explanatory note to 'expected item' error 2023-09-06 09:05:07 +05:30
default.rs Update ui tests involving invalid visibility qualifiers 2023-04-03 22:28:55 -05:00
default.stderr Update ui tests involving invalid visibility qualifiers 2023-04-03 22:28:55 -05:00
deli-ident-issue-1.rs Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
deli-ident-issue-1.stderr Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
deli-ident-issue-2.rs add testcase for #104012 2023-01-26 10:52:57 +08:00
deli-ident-issue-2.stderr Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
do-catch-suggests-try.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
do-catch-suggests-try.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
do-not-suggest-semicolon-before-array.rs Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
do-not-suggest-semicolon-before-array.stderr Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
do-not-suggest-semicolon-between-macro-without-exclamation-mark-and-array.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
do-not-suggest-semicolon-between-macro-without-exclamation-mark-and-array.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-after-struct-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-after-struct-field.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-attr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-attr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-eof.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-eof.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-extern-rbrace.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-extern-rbrace.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-fn-rbrace.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-fn-rbrace.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-mod-rbrace.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-mod-rbrace.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-rbrace.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-rbrace.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-semi.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-semi.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-struct-rbrace-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-struct-rbrace-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-struct-rbrace-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-before-struct-rbrace-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-comment-in-if-statement.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-comment-in-if-statement.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-comment-in-stmt.fixed Move where doc comment meant as comment check 2023-10-20 02:54:45 +00:00
doc-comment-in-stmt.rs Move where doc comment meant as comment check 2023-10-20 02:54:45 +00:00
doc-comment-in-stmt.stderr Move where doc comment meant as comment check 2023-10-20 02:54:45 +00:00
doc-inside-trait-item.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
doc-inside-trait-item.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dotdotdot-expr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dotdotdot-expr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
double-pointer.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
double-pointer.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
duplicate-visibility.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
duplicate-visibility.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
duplicate-where-clauses.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
duplicate-where-clauses.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dyn-trait-compatibility.rs Use smart-resolve when checking for trait in RHS of UFCS 2023-04-07 05:33:52 +00:00
dyn-trait-compatibility.stderr refactor(resolve): clean up the early error return caused by non-call 2023-05-10 22:35:01 +08:00
else-no-if.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
else-no-if.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
emoji-identifiers.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
emoji-identifiers.stderr When not finding assoc fn on type, look for builder fn 2023-11-07 00:54:10 +00:00
empty-impl-semicolon.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
empty-impl-semicolon.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
eq-less-to-less-eq.rs add hint for =< as <= 2023-05-05 11:17:14 -04:00
eq-less-to-less-eq.stderr add hint for =< as <= 2023-05-05 11:17:14 -04:00
expr-as-stmt-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
expr-as-stmt-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
expr-as-stmt.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
expr-as-stmt.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
expr-as-stmt.stderr adjust how closure/generator types and rvalues are printed 2023-09-21 22:20:58 +02:00
extern-abi-from-mac-literal-frag.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-abi-raw-strings.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-abi-string-escaping.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-abi-syntactic.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-crate-async.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-crate-unexpected-token.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-crate-unexpected-token.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-expected-fn-or-brace.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-expected-fn-or-brace.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-foreign-crate.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-foreign-crate.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-no-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
extern-no-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
float-field-interpolated.rs More detail when expecting expression but encountering bad macro argument 2023-11-16 16:19:04 +00:00
float-field-interpolated.stderr More detail when expecting expression but encountering bad macro argument 2023-11-16 16:19:04 +00:00
float-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
float-field.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
float-literals.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-arg-doc-comment.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-arg-doc-comment.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-body-eq-expr-semi.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-body-eq-expr-semi.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-body-optional-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-body-optional-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-body-optional-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-colon-return-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-colon-return-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-defined-using-def.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-defined-using-def.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-defined-using-fun.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-defined-using-fun.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-defined-using-func.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-defined-using-func.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-defined-using-function.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-defined-using-function.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-field-parse-error-ice.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-field-parse-error-ice.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-header-semantic-fail.rs Stabilize AFIT and RPITIT 2023-10-13 21:01:36 +00:00
fn-header-semantic-fail.stderr Stabilize AFIT and RPITIT 2023-10-13 21:01:36 +00:00
fn-header-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-returns-fn-pointer.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
foreign-const-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
foreign-const-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
foreign-const-syntactic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
foreign-const-syntactic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
foreign-static-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
foreign-static-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
foreign-static-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
foreign-ty-semantic-fail.rs Fix debug ICE for extern type with where clauses 2023-06-12 15:15:45 +08:00
foreign-ty-semantic-fail.stderr Fix debug ICE for extern type with where clauses 2023-06-12 15:15:45 +08:00
foreign-ty-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
generic-statics.rs Add UI tests for generic const items 2023-07-28 22:23:20 +02:00
generic-statics.stderr Add UI tests for generic const items 2023-07-28 22:23:20 +02:00
ident-recovery.rs feat: implement error recovery in expected_ident_found 2023-03-20 20:54:41 +13:00
ident-recovery.stderr feat: implement error recovery in expected_ident_found 2023-03-20 20:54:41 +13:00
if-block-unreachable-expr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
if-in-in.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
if-in-in.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
if-in-in.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-item-const-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-item-const-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-item-const-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-item-fn-no-body-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-item-fn-no-body-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-item-fn-no-body-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-item-type-no-body-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-item-type-no-body-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-item-type-no-body-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-on-unsized-typo.rs Recover impl<T ?Sized> correctly 2023-05-15 17:14:59 +00:00
impl-on-unsized-typo.stderr Recover impl<T ?Sized> correctly 2023-05-15 17:14:59 +00:00
impl-parsing.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-parsing.stderr Add explanatory note to 'expected item' error 2023-09-06 09:05:07 +05:30
impl-qpath.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-from-path.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-from-path.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-from-rename.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-from-rename.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-glob-path.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-glob-path.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-glob-rename.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-glob-rename.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
increment-autofix-2.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
increment-autofix-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
increment-autofix-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
increment-autofix.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
increment-autofix.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
increment-autofix.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner-attr-after-doc-comment.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner-attr-after-doc-comment.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner-attr-in-trait-def.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner-attr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner-attr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
int-literal-too-large-span.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
int-literal-too-large-span.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
integer-literal-start-ident.rs feat/refactor: improve errors in case of ident with number at start 2023-03-09 21:29:32 +13:00
integer-literal-start-ident.stderr refactor: improve "ident starts with number" error 2023-03-19 20:24:06 +13:00
intersection-patterns-1.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
intersection-patterns-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
intersection-patterns-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
intersection-patterns-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
intersection-patterns-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inverted-parameters.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inverted-parameters.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-116781.rs restore snapshot when parse_param_general 2023-10-28 08:53:51 +08:00
issue-116781.stderr restore snapshot when parse_param_general 2023-10-28 08:53:51 +08:00
item-free-const-no-body-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-free-const-no-body-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-free-const-no-body-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-free-static-no-body-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-free-static-no-body-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-free-static-no-body-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-free-type-bounds-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-free-type-bounds-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-free-type-bounds-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-kw-case-mismatch.fixed Migrate trivially translatable rustc_parse diagnostics 2023-04-27 01:53:06 +01:00
item-kw-case-mismatch.rs Migrate trivially translatable rustc_parse diagnostics 2023-04-27 01:53:06 +01:00
item-kw-case-mismatch.stderr Migrate trivially translatable rustc_parse diagnostics 2023-04-27 01:53:06 +01:00
item-needs-block.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
item-needs-block.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-abstract.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-abstract.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-as-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-as-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-box-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-box-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-break-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-break-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-const-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-const-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-continue-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-continue-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-else-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-else-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-enum-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-enum-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-final.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-final.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-fn-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-fn-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-for-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-for-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-if-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-if-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-impl-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-impl-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-in-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-in-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-let-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-let-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-loop-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-loop-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-match-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-match-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-mod-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-mod-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-move-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-move-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-mut-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-mut-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-override.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-override.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-pub-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-pub-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-ref-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-ref-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-return-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-return-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-static-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-static-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-struct-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-struct-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-trait-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-trait-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-try-as-identifier-edition2018.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-try-as-identifier-edition2018.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-type-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-type-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-typeof.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-typeof.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-union-as-identifier.rs Parse unnamed fields and anonymous structs or unions 2023-08-24 11:17:54 +08:00
keyword-unsafe-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-unsafe-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-use-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-use-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-where-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-where-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-while-as-identifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword-while-as-identifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keyword.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keywords-followed-by-double-colon.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
keywords-followed-by-double-colon.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
kw-in-trait-bounds.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
kw-in-trait-bounds.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
label-after-block-like.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
label-after-block-like.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
label-is-actually-char.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
label-is-actually-char.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
labeled-no-colon-expr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
labeled-no-colon-expr.stderr Add suggestion for bad block fragment error 2023-06-23 19:18:20 +00:00
let-binop.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
let-binop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
let-binop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetime_starts_expressions.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetime_starts_expressions.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetime-in-pattern-recover.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetime-in-pattern-recover.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetime-in-pattern.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetime-in-pattern.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetime-semicolon.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetime-semicolon.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetime-semicolon.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lit-err-in-macro.rs Handle interpolated literal errors 2023-06-15 01:55:37 +00:00
lit-err-in-macro.stderr Handle interpolated literal errors 2023-06-15 01:55:37 +00:00
macro-bad-delimiter-ident.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macro-bad-delimiter-ident.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macro-braces-dot-question.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macro-keyword.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macro-keyword.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macro-mismatched-delim-brace-paren.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macro-mismatched-delim-brace-paren.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macro-mismatched-delim-paren-brace.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macro-mismatched-delim-paren-brace.stderr Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
macros-no-semicolon-items.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macros-no-semicolon-items.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macros-no-semicolon.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
macros-no-semicolon.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-arm-without-braces.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-arm-without-braces.stderr generalize help message 2023-02-26 11:58:49 +01:00
match-arrows-block-then-binop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-arrows-block-then-binop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-refactor-to-expr.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-refactor-to-expr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-refactor-to-expr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mbe_missing_right_paren.rs Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
mbe_missing_right_paren.stderr Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
method-call-on-struct-literal-in-if-condition.rs Detect struct literal needing parentheses 2023-01-11 16:53:21 +00:00
method-call-on-struct-literal-in-if-condition.stderr reword the message to suggest surrounding with parentheses 2023-06-10 06:28:35 +08:00
mismatched-delim-brace-empty-block.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mismatched-delim-brace-empty-block.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing_right_paren.rs remove duplicated diagnostic for unclosed delimiter 2023-02-28 07:57:17 +00:00
missing_right_paren.stderr remove duplicated diagnostic for unclosed delimiter 2023-02-28 07:57:17 +00:00
missing-closing-angle-bracket-eq-constraint.rs Don't expose type parameters and implementation details from macro expansion 2023-02-09 15:15:15 +08:00
missing-closing-angle-bracket-eq-constraint.stderr Don't expose type parameters and implementation details from macro expansion 2023-02-09 15:15:15 +08:00
missing-closing-angle-bracket-struct-field-ty.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-closing-angle-bracket-struct-field-ty.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-expression-in-for-loop.rs Add ui test for missing expression in for loop 2023-02-05 17:33:17 +03:00
missing-expression-in-for-loop.stderr Add ui test for missing expression in for loop 2023-02-05 17:33:17 +03:00
missing-fat-arrow.rs review comments 2023-10-04 01:35:07 +00:00
missing-fat-arrow.stderr review comments 2023-10-04 01:35:07 +00:00
missing-semicolon.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-semicolon.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
misspelled-macro-rules.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
misspelled-macro-rules.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
misspelled-macro-rules.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mod_file_not_exist_windows.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mod_file_not_exist_windows.stderr Mention the syntax for use on mod foo; if foo doesn't exist 2023-10-21 15:56:01 +00:00
mod_file_not_exist.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mod_file_not_exist.stderr Mention the syntax for use on mod foo; if foo doesn't exist 2023-10-21 15:56:01 +00:00
mod_file_with_path_attr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mod_file_with_path_attr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
multibyte-char-use-seperator-issue-80134.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
multibyte-char-use-seperator-issue-80134.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
multiline-comment-line-tracking.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
multiline-comment-line-tracking.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
multitrait.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
multitrait.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-patterns.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-patterns.stderr Smaller span for unnessary mut suggestion 2023-11-16 16:58:41 +00:00
nested-bad-turbofish.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
nested-bad-turbofish.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
nested-missing-closing-angle-bracket.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
nested-missing-closing-angle-bracket.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
new-unicode-escapes-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
new-unicode-escapes-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
new-unicode-escapes-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
new-unicode-escapes-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
new-unicode-escapes-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
new-unicode-escapes-3.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
new-unicode-escapes-4.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
new-unicode-escapes-4.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-binary-float-literal.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-binary-float-literal.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-const-fn-in-extern-block.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-const-fn-in-extern-block.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-hex-float-literal.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-hex-float-literal.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-unsafe-self.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-unsafe-self.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
not-a-pred.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
not-a-pred.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
nt-parsing-has-recovery.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
nt-parsing-has-recovery.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
numeric-lifetime.rs Revert "Don't recover lifetimes/labels containing emojis as character literals" 2023-04-10 06:52:41 +00:00
numeric-lifetime.stderr Revert "Don't recover lifetimes/labels containing emojis as character literals" 2023-04-10 06:52:41 +00:00
obsolete-syntax-impl-for-dotdot.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
obsolete-syntax-impl-for-dotdot.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
old-suffixes-are-really-forbidden.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
old-suffixes-are-really-forbidden.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
omitted-arg-in-item-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
omitted-arg-in-item-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
operator-associativity.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
paamayim-nekudotayim.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
paamayim-nekudotayim.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
parse-assoc-type-lt.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
parse-error-correct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
parse-error-correct.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
parse-panic.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
parser-recovery-1.rs Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
parser-recovery-1.stderr Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
parser-recovery-2.rs Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
parser-recovery-2.stderr Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
parser-unicode-whitespace.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-3.rs Suggests turbofish in patterns 2023-08-01 23:30:40 +08:00
pat-lt-bracket-3.stderr Suggests turbofish in patterns 2023-08-01 23:30:40 +08:00
pat-lt-bracket-4.rs Suggests turbofish in patterns 2023-08-01 23:30:40 +08:00
pat-lt-bracket-4.stderr Suggests turbofish in patterns 2023-08-01 23:30:40 +08:00
pat-lt-bracket-5.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-5.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-6.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-6.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-7.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-lt-bracket-7.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ranges-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ranges-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ranges-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ranges-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ranges-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ranges-3.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ranges-4.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ranges-4.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ref-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-ref-enum.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-tuple-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-tuple-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-tuple-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-tuple-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pat-tuple-3.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pub-method-macro.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pub-method-macro.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub-1.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub-3.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub-3.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
public-instead-of-pub.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
qualified-path-in-turbofish.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
qualified-path-in-turbofish.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
qualified-path-in-turbofish.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range_inclusive_dotdotdot.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range_inclusive_dotdotdot.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range_inclusive.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range_inclusive.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range_inclusive.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range-3.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range-4.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range-4.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range-inclusive-extra-equals.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
range-inclusive-extra-equals.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
ranges-precedence.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
recovered-struct-variant.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
recovered-struct-variant.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-out-of-scope-slice.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-out-of-scope-slice.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-box.fixed Add recovery for use of removed box syntax 2023-03-12 13:26:37 +00:00
removed-syntax-box.rs Add recovery for use of removed box syntax 2023-03-12 13:26:37 +00:00
removed-syntax-box.stderr Add recovery for use of removed box syntax 2023-03-12 13:26:37 +00:00
removed-syntax-closure-lifetime.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-closure-lifetime.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-enum-newtype.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-enum-newtype.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-field-let-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-field-let-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-field-let.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-field-let.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-field-semicolon.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-field-semicolon.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-fixed-vec.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-fixed-vec.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-fn-sigil.rs Recover from missing param list in function definitions 2023-11-01 14:48:20 +00:00
removed-syntax-fn-sigil.stderr Recover from missing param list in function definitions 2023-11-01 14:48:20 +00:00
removed-syntax-mode.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-mode.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-mut-vec-expr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-mut-vec-expr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-mut-vec-ty.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-mut-vec-ty.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-ptr-lifetime.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-ptr-lifetime.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-record.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-record.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-static-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-static-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-uniq-mut-expr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-uniq-mut-expr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-uniq-mut-ty.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-uniq-mut-ty.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-with-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-with-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-with-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removed-syntax-with-2.stderr Detect missing => after match guard during parsing 2023-10-03 21:21:02 +00:00
require-parens-for-chained-comparison.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
require-parens-for-chained-comparison.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
self-in-function-arg.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
self-in-function-arg.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
self-param-semantic-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
self-param-semantic-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
self-param-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
semi-after-closure-in-macro.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
semi-in-let-chain.rs Suggest fix for ; within let-chains 2023-11-09 00:31:42 -08:00
semi-in-let-chain.stderr Suggest fix for ; within let-chains 2023-11-09 00:31:42 -08:00
several-carriage-returns-in-doc-comment.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
several-carriage-returns-in-doc-comment.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
similar-tokens.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
similar-tokens.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
slowparse-bstring.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
slowparse-string.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
stmt_expr_attrs_placement.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
stmt_expr_attrs_placement.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
stripped-nested-outline-mod-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-default-values-and-missing-field-separator.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-default-values-and-missing-field-separator.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-default-values-and-missing-field-separator.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-field-numeric-shorthand.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-field-numeric-shorthand.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-filed-with-attr.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-filed-with-attr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-filed-with-attr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-literal-in-for.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-literal-in-for.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-literal-in-if.rs Add tests for struct literals in if let/while let 2023-08-28 10:30:48 +01:00
struct-literal-in-if.stderr Add tests for struct literals in if let/while let 2023-08-28 10:30:48 +01:00
struct-literal-in-match-discriminant.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-literal-in-match-discriminant.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-literal-in-match-guard.rs Allow stuct literals in if let guards 2023-08-28 10:31:45 +01:00
struct-literal-in-while.rs Add tests for struct literals in if let/while let 2023-08-28 10:30:48 +01:00
struct-literal-in-while.stderr Add tests for struct literals in if let/while let 2023-08-28 10:30:48 +01:00
struct-literal-restrictions-in-lamda.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-literal-restrictions-in-lamda.stderr adjust how closure/generator types and rvalues are printed 2023-09-21 22:20:58 +02:00
struct-literal-variant-in-if.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-literal-variant-in-if.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-const.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-const.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-const.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-const-for-global-var.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-const-for-global-var.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-removing-semicolon-after-impl-trait-items.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-removing-semicolon-after-impl-trait-items.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-removing-semicolon-after-impl-trait-items.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-semi-in-array.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-semi-in-array.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-semicolon-before-array.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-semicolon-before-array.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-semicolon-before-array.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
ternary_operator.rs Recover ternary expression as error 2023-10-26 23:04:20 +00:00
ternary_operator.stderr Recover ternary expression as error 2023-10-26 23:04:20 +00:00
trailing-carriage-return-in-string.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trailing-carriage-return-in-string.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trailing-plus-in-bounds.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trailing-question-in-macro-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trailing-question-in-macro-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trailing-question-in-type.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trailing-question-in-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trailing-question-in-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-bounds-not-on-impl.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-bounds-not-on-impl.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-item-with-defaultness-fail-semantic.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-item-with-defaultness-fail-semantic.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-item-with-defaultness-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-object-bad-parens.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-object-bad-parens.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-object-delimiters.rs Fix bad suggestion when wrong parentheses around a dyn trait 2023-08-16 00:26:10 +08:00
trait-object-delimiters.stderr Fix bad suggestion when wrong parentheses around a dyn trait 2023-08-16 00:26:10 +08:00
trait-object-lifetime-parens.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-object-lifetime-parens.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-object-polytrait-priority.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-object-polytrait-priority.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-object-trait-parens.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-object-trait-parens.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-plusequal-splitting.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-pub-assoc-const.rs Update ui tests involving invalid visibility qualifiers 2023-04-03 22:28:55 -05:00
trait-pub-assoc-const.stderr Update ui tests involving invalid visibility qualifiers 2023-04-03 22:28:55 -05:00
trait-pub-assoc-ty.rs Update ui tests involving invalid visibility qualifiers 2023-04-03 22:28:55 -05:00
trait-pub-assoc-ty.stderr Update ui tests involving invalid visibility qualifiers 2023-04-03 22:28:55 -05:00
trait-pub-method.rs Update ui tests involving invalid visibility qualifiers 2023-04-03 22:28:55 -05:00
trait-pub-method.stderr Update ui tests involving invalid visibility qualifiers 2023-04-03 22:28:55 -05:00
try-with-nonterminal-block.rs Support interpolated block for try and async 2023-07-22 15:22:12 +00:00
type-ascription-in-pattern.rs Parse and recover from type ascription in patterns 2023-02-02 17:18:48 +00:00
type-ascription-in-pattern.stderr Parse and recover from type ascription in patterns 2023-02-02 17:18:48 +00:00
type-parameters-in-field-exprs.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-parameters-in-field-exprs.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
typod-const-in-const-param-def.rs Recover upon encountering mistyped Const in const param def 2023-05-28 16:55:21 +08:00
typod-const-in-const-param-def.stderr Recover upon encountering mistyped Const in const param def 2023-05-28 16:55:21 +08:00
unbalanced-doublequote.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unbalanced-doublequote.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unclosed_delim_mod.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unclosed_delim_mod.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unclosed-braces.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unclosed-braces.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unclosed-delimiter-in-dep.rs Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
unclosed-delimiter-in-dep.stderr Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
underscore_item_not_const.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
underscore_item_not_const.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
underscore-suffix-for-float.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
underscore-suffix-for-float.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
underscore-suffix-for-string.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
underscore-suffix-for-string.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unicode-character-literal.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unicode-character-literal.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unicode-character-literal.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unicode-chars.rs Add double-equals homoglyph 2023-01-19 02:25:55 +00:00
unicode-chars.stderr Add double-equals homoglyph 2023-01-19 02:25:55 +00:00
unicode-control-codepoints.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unicode-control-codepoints.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unicode-quote-chars.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unicode-quote-chars.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unmatched-delimiter-at-end-of-file.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unmatched-delimiter-at-end-of-file.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unmatched-langle-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unmatched-langle-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unmatched-langle-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unmatched-langle-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unnecessary-let.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unnecessary-let.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsafe-foreign-mod-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsafe-foreign-mod-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsafe-foreign-mod.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsafe-foreign-mod.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsafe-mod.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsafe-mod.stderr Mention the syntax for use on mod foo; if foo doesn't exist 2023-10-21 15:56:01 +00:00
unsized2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsized2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsized.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsized.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-as-where-use-ends-with-mod-sep.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-as-where-use-ends-with-mod-sep.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-colon-as-mod-sep.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-colon-as-mod-sep.stderr Migrate trivially translatable rustc_parse diagnostics 2023-04-27 01:53:06 +01:00
use-ends-with-mod-sep.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-ends-with-mod-sep.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-unclosed-brace.rs Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
use-unclosed-brace.stderr Exit when there are unmatched delims to avoid noisy diagnostics 2023-02-28 07:55:19 +00:00
utf8_idents-rpass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
utf16-be-without-bom.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
utf16-be-without-bom.stderr Detect extra space in keyword for better hint 2023-07-04 18:13:31 +08:00
utf16-le-without-bom.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
utf16-le-without-bom.stderr Detect extra space in keyword for better hint 2023-07-04 18:13:31 +08:00
variadic-ffi-nested-syntactic-fail.rs Avoid a track_errors by bubbling up most errors from check_well_formed 2023-10-20 08:46:27 +00:00
variadic-ffi-nested-syntactic-fail.stderr Avoid a track_errors by bubbling up most errors from check_well_formed 2023-10-20 08:46:27 +00:00
variadic-ffi-semantic-restrictions.rs Explicitly reject const C-variadic functions 2023-10-30 10:38:25 -04:00
variadic-ffi-semantic-restrictions.stderr Explicitly reject const C-variadic functions 2023-10-30 10:38:25 -04:00
variadic-ffi-syntactic-pass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
virtual-structs.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
virtual-structs.stderr Add explanatory note to 'expected item' error 2023-09-06 09:05:07 +05:30
where_with_bound.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
where_with_bound.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
where-clauses-no-bounds-or-predicates.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
where-clauses-no-bounds-or-predicates.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
while-if-let-without-body.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
while-if-let-without-body.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
wrong-escape-of-curly-braces.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
wrong-escape-of-curly-braces.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00