2022-09-23 06:49:02 -05:00
error: unsupported type attribute for diagnostic derive enum
2022-06-29 03:21:44 -05:00
--> $DIR/diagnostic-derive.rs:39:1
2020-08-27 05:00:21 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[diag(compiletest_example, code = "E0123")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-23 06:49:02 -05:00
error: diagnostic slug not specified
--> $DIR/diagnostic-derive.rs:42:5
|
LL | Foo,
| ^^^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2022-09-23 06:49:02 -05:00
error: diagnostic slug not specified
--> $DIR/diagnostic-derive.rs:44:5
|
LL | Bar,
| ^^^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2020-08-27 05:00:21 -05:00
2022-08-19 08:40:48 -05:00
error: `#[diag = ...]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:50:1
2020-08-27 05:00:21 -05:00
|
2022-08-19 08:40:48 -05:00
LL | #[diag = "E0123"]
| ^^^^^^^^^^^^^^^^^
2022-03-31 02:35:17 -05:00
2022-04-26 22:06:13 -05:00
error: `#[nonsense(...)]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:55:1
2022-03-31 02:35:17 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[nonsense(compiletest_example, code = "E0123")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-03-31 02:35:17 -05:00
2022-08-19 08:02:10 -05:00
error: diagnostic slug not specified
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:55:1
2022-03-31 02:35:17 -05:00
|
2022-10-22 04:08:09 -05:00
LL | / #[nonsense(compiletest_example, code = "E0123")]
2022-03-31 02:35:17 -05:00
LL | |
LL | |
LL | |
LL | | struct InvalidStructAttr {}
| |___________________________^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2022-03-31 02:35:17 -05:00
2022-08-19 08:40:48 -05:00
error: `#[diag("...")]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:62:8
2022-03-31 02:35:17 -05:00
|
2022-08-19 08:40:48 -05:00
LL | #[diag("E0123")]
| ^^^^^^^
2022-06-23 08:51:44 -05:00
|
2022-09-14 10:19:40 -05:00
= help: a diagnostic slug is required as the first argument
2022-03-31 02:35:17 -05:00
2022-06-23 08:51:44 -05:00
error: diagnostic slug not specified
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:62:1
2022-03-31 02:35:17 -05:00
|
2022-08-19 08:40:48 -05:00
LL | / #[diag("E0123")]
2022-03-31 02:35:17 -05:00
LL | |
LL | |
LL | | struct InvalidLitNestedAttr {}
| |______________________________^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2022-03-31 02:35:17 -05:00
2022-08-19 08:40:48 -05:00
error: `#[diag(nonsense(...))]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:73:8
2022-03-31 02:35:17 -05:00
|
2022-08-19 08:40:48 -05:00
LL | #[diag(nonsense("foo"), code = "E0123", slug = "foo")]
| ^^^^^^^^^^^^^^^
2022-06-23 08:51:44 -05:00
|
2022-09-14 10:19:40 -05:00
= help: a diagnostic slug is required as the first argument
2022-06-23 08:51:44 -05:00
error: diagnostic slug not specified
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:73:1
2022-06-23 08:51:44 -05:00
|
2022-08-19 08:40:48 -05:00
LL | / #[diag(nonsense("foo"), code = "E0123", slug = "foo")]
2022-06-23 08:51:44 -05:00
LL | |
LL | |
LL | | struct InvalidNestedStructAttr1 {}
| |__________________________________^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2022-03-31 02:35:17 -05:00
2022-08-19 08:40:48 -05:00
error: `#[diag(nonsense = ...)]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:79:8
2022-03-31 02:35:17 -05:00
|
2022-08-19 08:40:48 -05:00
LL | #[diag(nonsense = "...", code = "E0123", slug = "foo")]
| ^^^^^^^^^^^^^^^^
2022-04-26 22:06:13 -05:00
|
2022-09-14 10:19:40 -05:00
= help: only `code` is a valid nested attributes following the slug
error: `#[diag(slug = ...)]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:79:42
2022-09-14 10:19:40 -05:00
|
LL | #[diag(nonsense = "...", code = "E0123", slug = "foo")]
| ^^^^^^^^^^^^
|
= help: only `code` is a valid nested attributes following the slug
2022-06-23 08:51:44 -05:00
error: diagnostic slug not specified
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:79:1
2022-06-23 08:51:44 -05:00
|
2022-08-19 08:40:48 -05:00
LL | / #[diag(nonsense = "...", code = "E0123", slug = "foo")]
2022-06-23 08:51:44 -05:00
LL | |
LL | |
2022-09-14 10:19:40 -05:00
LL | |
2022-06-23 08:51:44 -05:00
LL | | struct InvalidNestedStructAttr2 {}
| |__________________________________^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2022-03-31 02:35:17 -05:00
2022-08-19 08:40:48 -05:00
error: `#[diag(nonsense = ...)]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:86:8
2022-03-31 02:35:17 -05:00
|
2022-08-19 08:40:48 -05:00
LL | #[diag(nonsense = 4, code = "E0123", slug = "foo")]
| ^^^^^^^^^^^^
2022-09-14 10:19:40 -05:00
error: `#[diag(slug = ...)]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:86:38
2022-06-23 08:51:44 -05:00
|
2022-09-14 10:19:40 -05:00
LL | #[diag(nonsense = 4, code = "E0123", slug = "foo")]
| ^^^^^^^^^^^^
|
= help: only `code` is a valid nested attributes following the slug
2020-08-27 05:00:21 -05:00
2022-06-23 08:51:44 -05:00
error: diagnostic slug not specified
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:86:1
2020-08-27 05:00:21 -05:00
|
2022-08-19 08:40:48 -05:00
LL | / #[diag(nonsense = 4, code = "E0123", slug = "foo")]
2022-06-23 08:51:44 -05:00
LL | |
LL | |
2022-09-14 10:19:40 -05:00
LL | |
2022-06-23 08:51:44 -05:00
LL | | struct InvalidNestedStructAttr3 {}
| |__________________________________^
2022-04-26 22:06:13 -05:00
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2020-08-27 05:00:21 -05:00
2022-08-19 08:40:48 -05:00
error: `#[diag(slug = ...)]` is not a valid attribute
2022-10-22 04:08:09 -05:00
--> $DIR/diagnostic-derive.rs:93:45
2022-03-31 02:35:17 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[diag(compiletest_example, code = "E0123", slug = "foo")]
| ^^^^^^^^^^^^
2022-03-31 02:35:17 -05:00
|
2022-06-23 08:51:44 -05:00
= help: only `code` is a valid nested attributes following the slug
error: `#[suggestion = ...]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:100:5
2020-08-27 05:00:21 -05:00
|
2022-06-23 08:51:44 -05:00
LL | #[suggestion = "bar"]
| ^^^^^^^^^^^^^^^^^^^^^
2020-08-27 05:00:21 -05:00
2022-04-26 22:28:21 -05:00
error: specified multiple times
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:107:8
2022-04-26 22:28:21 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[diag(compiletest_example, code = "E0456")]
| ^^^^^^^^^^^^^^^^^^^
2022-04-26 22:28:21 -05:00
|
note: previously specified here
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:106:8
2022-04-26 22:28:21 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[diag(compiletest_example, code = "E0123")]
| ^^^^^^^^^^^^^^^^^^^
2022-04-26 22:28:21 -05:00
error: specified multiple times
2022-10-22 04:08:09 -05:00
--> $DIR/diagnostic-derive.rs:107:36
2022-03-31 02:35:17 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[diag(compiletest_example, code = "E0456")]
| ^^^^^^^
2022-03-31 02:35:17 -05:00
|
note: previously specified here
2022-10-22 04:08:09 -05:00
--> $DIR/diagnostic-derive.rs:106:36
2022-03-31 02:35:17 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[diag(compiletest_example, code = "E0123")]
| ^^^^^^^
2022-03-31 02:35:17 -05:00
2022-04-26 22:28:21 -05:00
error: specified multiple times
2022-10-22 04:08:09 -05:00
--> $DIR/diagnostic-derive.rs:113:52
2022-03-31 02:35:17 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[diag(compiletest_example, code = "E0456", code = "E0457")]
| ^^^^^^^
2022-03-31 02:35:17 -05:00
|
note: previously specified here
2022-10-22 04:08:09 -05:00
--> $DIR/diagnostic-derive.rs:113:36
2022-03-31 02:35:17 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[diag(compiletest_example, code = "E0456", code = "E0457")]
| ^^^^^^^
2022-06-23 08:51:44 -05:00
2022-10-22 04:08:09 -05:00
error: `#[diag(compiletest_example)]` is not a valid attribute
--> $DIR/diagnostic-derive.rs:118:29
2022-06-23 08:51:44 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[diag(compiletest_example, compiletest_example, code = "E0456")]
| ^^^^^^^^^^^^^^^^^^^
2022-09-14 10:19:40 -05:00
|
= help: diagnostic slug must be the first argument
2022-03-31 02:35:17 -05:00
2022-08-19 08:02:10 -05:00
error: diagnostic slug not specified
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:123:1
2022-03-31 02:35:17 -05:00
|
LL | struct KindNotProvided {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2022-03-31 02:35:17 -05:00
2022-06-23 08:51:44 -05:00
error: diagnostic slug not specified
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:126:1
2022-03-31 02:35:17 -05:00
|
2022-08-19 08:40:48 -05:00
LL | / #[diag(code = "E0456")]
2022-06-23 08:51:44 -05:00
LL | |
2022-03-31 02:35:17 -05:00
LL | | struct SlugNotProvided {}
| |_________________________^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2020-08-27 05:00:21 -05:00
2022-07-11 11:15:31 -05:00
error: the `#[primary_span]` attribute can only be applied to fields of type `Span` or `MultiSpan`
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:137:5
2022-03-31 02:35:17 -05:00
|
2022-03-31 02:50:45 -05:00
LL | #[primary_span]
| ^^^^^^^^^^^^^^^
2022-03-31 02:35:17 -05:00
2022-04-26 22:06:13 -05:00
error: `#[nonsense]` is not a valid attribute
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:145:5
2020-08-27 05:00:21 -05:00
|
2022-03-31 02:35:17 -05:00
LL | #[nonsense]
| ^^^^^^^^^^^
2020-08-27 05:00:21 -05:00
2022-07-11 11:15:31 -05:00
error: the `#[label(...)]` attribute can only be applied to fields of type `Span` or `MultiSpan`
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:162:5
2020-08-27 05:00:21 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[label(label)]
| ^^^^^^^^^^^^^^^
2020-08-27 05:00:21 -05:00
error: `name` doesn't refer to a field on this type
2022-10-22 04:08:09 -05:00
--> $DIR/diagnostic-derive.rs:170:37
2020-08-27 05:00:21 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[suggestion(suggestion, code = "{name}")]
| ^^^^^^^^
2020-08-27 05:00:21 -05:00
error: invalid format string: expected `'}'` but string was terminated
2022-08-26 11:52:08 -05:00
--> $DIR/diagnostic-derive.rs:175:10
2020-08-27 05:00:21 -05:00
|
2022-09-18 10:46:56 -05:00
LL | #[derive(Diagnostic)]
2022-08-26 11:52:08 -05:00
| ^^^^^^^^^^ expected `'}'` in format string
2020-08-27 05:00:21 -05:00
|
= note: if you intended to print `{`, you can escape it using `{{`
2022-09-18 10:46:56 -05:00
= note: this error originates in the derive macro `Diagnostic` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-08-27 05:00:21 -05:00
error: invalid format string: unmatched `}` found
2022-08-26 11:52:08 -05:00
--> $DIR/diagnostic-derive.rs:185:10
2020-08-27 05:00:21 -05:00
|
2022-09-18 10:46:56 -05:00
LL | #[derive(Diagnostic)]
2022-08-26 11:52:08 -05:00
| ^^^^^^^^^^ unmatched `}` in format string
2020-08-27 05:00:21 -05:00
|
= note: if you intended to print `}`, you can escape it using `}}`
2022-09-18 10:46:56 -05:00
= note: this error originates in the derive macro `Diagnostic` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-08-27 05:00:21 -05:00
2022-07-11 11:15:31 -05:00
error: the `#[label(...)]` attribute can only be applied to fields of type `Span` or `MultiSpan`
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:205:5
2020-08-27 05:00:21 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[label(label)]
| ^^^^^^^^^^^^^^^
2020-08-27 05:00:21 -05:00
2022-09-14 10:19:40 -05:00
error: suggestion without `code = "..."`
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:224:5
2022-09-14 10:19:40 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[suggestion(suggestion)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-14 10:19:40 -05:00
2022-04-26 22:06:13 -05:00
error: `#[suggestion(nonsense = ...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:232:18
2020-08-27 05:00:21 -05:00
|
2022-03-31 07:10:13 -05:00
LL | #[suggestion(nonsense = "bar")]
| ^^^^^^^^^^^^^^^^
2022-04-26 22:06:13 -05:00
|
2022-10-20 13:28:24 -05:00
= help: only `style`, `code` and `applicability` are valid nested attributes
2022-09-14 10:19:40 -05:00
error: suggestion without `code = "..."`
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:232:5
2022-09-14 10:19:40 -05:00
|
LL | #[suggestion(nonsense = "bar")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-08-27 05:00:21 -05:00
2022-04-26 22:06:13 -05:00
error: `#[suggestion(msg = ...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:241:18
2020-08-27 05:00:21 -05:00
|
2022-03-31 07:10:13 -05:00
LL | #[suggestion(msg = "bar")]
| ^^^^^^^^^^^
2022-04-26 22:06:13 -05:00
|
2022-10-20 13:28:24 -05:00
= help: only `style`, `code` and `applicability` are valid nested attributes
2022-09-14 10:19:40 -05:00
error: suggestion without `code = "..."`
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:241:5
2022-09-14 10:19:40 -05:00
|
LL | #[suggestion(msg = "bar")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-08-27 05:00:21 -05:00
error: wrong field type for suggestion
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:264:5
2020-08-27 05:00:21 -05:00
|
2022-10-22 04:08:09 -05:00
LL | / #[suggestion(suggestion, code = "This is suggested code")]
2020-11-18 04:18:40 -06:00
LL | |
LL | | suggestion: Applicability,
| |_____________________________^
2020-08-27 05:00:21 -05:00
|
2022-03-30 04:04:03 -05:00
= help: `#[suggestion(...)]` should be applied to fields of type `Span` or `(Span, Applicability)`
2020-08-27 05:00:21 -05:00
2022-09-10 07:43:07 -05:00
error: specified multiple times
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:280:24
2020-08-27 05:00:21 -05:00
|
2022-09-10 07:43:07 -05:00
LL | suggestion: (Span, Span, Applicability),
| ^^^^
|
note: previously specified here
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:280:18
2022-09-10 07:43:07 -05:00
|
LL | suggestion: (Span, Span, Applicability),
| ^^^^
2020-08-27 05:00:21 -05:00
2022-09-10 07:43:07 -05:00
error: specified multiple times
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:288:33
2020-08-27 05:00:21 -05:00
|
2022-09-10 07:43:07 -05:00
LL | suggestion: (Applicability, Applicability, Span),
| ^^^^^^^^^^^^^
|
note: previously specified here
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:288:18
2022-09-10 07:43:07 -05:00
|
LL | suggestion: (Applicability, Applicability, Span),
| ^^^^^^^^^^^^^
2020-08-27 05:00:21 -05:00
2022-06-23 08:51:44 -05:00
error: `#[label = ...]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:295:5
2022-04-26 22:06:13 -05:00
|
2022-06-23 08:51:44 -05:00
LL | #[label = "bar"]
| ^^^^^^^^^^^^^^^^
2020-08-27 05:00:21 -05:00
2022-09-10 07:48:01 -05:00
error: specified multiple times
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:446:44
2022-04-26 23:43:36 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[suggestion(suggestion, code = "...", applicability = "maybe-incorrect")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-10 07:48:01 -05:00
|
note: previously specified here
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:448:24
2022-09-10 07:48:01 -05:00
|
LL | suggestion: (Span, Applicability),
| ^^^^^^^^^^^^^
2022-04-26 23:43:36 -05:00
error: invalid applicability
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:454:44
2022-06-23 08:51:44 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[suggestion(suggestion, code = "...", applicability = "batman")]
| ^^^^^^^^^^^^^^^^^^^^^^^^
2022-06-23 08:51:44 -05:00
2022-09-14 10:19:40 -05:00
error: `#[label(foo)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:517:20
2022-06-23 08:51:44 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[label(label, foo)]
| ^^^
2022-09-14 10:19:40 -05:00
|
= help: a diagnostic slug must be the first argument to the attribute
2022-06-23 08:51:44 -05:00
2022-09-14 10:19:40 -05:00
error: `#[label(foo = ...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:525:20
2022-06-23 08:51:44 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[label(label, foo = "...")]
| ^^^^^^^^^^^
2022-06-23 08:51:44 -05:00
2022-09-14 10:19:40 -05:00
error: `#[label(foo(...))]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:533:20
2022-04-26 23:43:36 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[label(label, foo("..."))]
| ^^^^^^^^^^
2022-04-26 23:43:36 -05:00
2022-08-19 08:40:48 -05:00
error: `#[primary_span]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:545:5
2022-06-30 02:57:45 -05:00
|
2022-08-19 08:40:48 -05:00
LL | #[primary_span]
| ^^^^^^^^^^^^^^^
2022-06-30 02:57:45 -05:00
|
2022-08-19 08:40:48 -05:00
= help: the `primary_span` field attribute is not valid for lint diagnostics
2022-06-30 02:57:45 -05:00
2022-08-19 08:40:48 -05:00
error: `#[error(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:565:1
2022-06-30 02:57:45 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[error(compiletest_example, code = "E0123")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-06-30 02:57:45 -05:00
2022-08-19 08:40:48 -05:00
error: diagnostic slug not specified
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:565:1
2022-08-19 08:04:34 -05:00
|
2022-10-22 04:08:09 -05:00
LL | / #[error(compiletest_example, code = "E0123")]
2022-08-19 08:40:48 -05:00
LL | |
LL | |
LL | |
LL | | struct ErrorAttribute {}
| |________________________^
2022-08-19 08:04:34 -05:00
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2022-08-19 08:40:48 -05:00
2022-08-24 10:57:10 -05:00
error: `#[warn_(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:572:1
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[warn_(compiletest_example, code = "E0123")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-08-19 08:40:48 -05:00
error: diagnostic slug not specified
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:572:1
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | / #[warn_(compiletest_example, code = "E0123")]
2022-08-19 08:40:48 -05:00
LL | |
LL | |
LL | |
2022-08-24 10:57:10 -05:00
LL | | struct WarnAttribute {}
| |_______________________^
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2022-08-19 08:40:48 -05:00
error: `#[lint(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:579:1
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[lint(compiletest_example, code = "E0123")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-08-19 08:40:48 -05:00
error: diagnostic slug not specified
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:579:1
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | / #[lint(compiletest_example, code = "E0123")]
2022-08-19 08:40:48 -05:00
LL | |
LL | |
LL | |
LL | | struct LintAttributeOnSessionDiag {}
| |____________________________________^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the `#[diag(...)]` attribute, such as `#[diag(hir_analysis_example_error)]`
2022-08-19 08:40:48 -05:00
error: `#[lint(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:586:1
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[lint(compiletest_example, code = "E0123")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-08-19 08:40:48 -05:00
2022-09-22 09:25:05 -05:00
error: `#[lint(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:586:1
2022-09-22 09:25:05 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[lint(compiletest_example, code = "E0123")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-22 09:25:05 -05:00
2022-08-19 08:40:48 -05:00
error: diagnostic slug not specified
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:586:1
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | / #[lint(compiletest_example, code = "E0123")]
2022-08-19 08:40:48 -05:00
LL | |
LL | |
LL | |
2022-09-22 09:25:05 -05:00
LL | |
2022-08-19 08:40:48 -05:00
LL | | struct LintAttributeOnLintDiag {}
| |_________________________________^
|
2022-10-22 04:08:09 -05:00
= help: specify the slug as the first argument to the attribute, such as `#[diag(compiletest_example)]`
2022-08-19 08:04:34 -05:00
2022-09-10 07:28:12 -05:00
error: specified multiple times
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:596:44
2022-09-10 07:28:12 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[suggestion(suggestion, code = "...", code = ",,,")]
| ^^^^^^^^^^^^
2022-09-10 07:28:12 -05:00
|
note: previously specified here
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:596:30
2022-09-10 07:28:12 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[suggestion(suggestion, code = "...", code = ",,,")]
| ^^^^^^^^^^^^
2022-09-10 07:28:12 -05:00
2022-09-10 07:43:07 -05:00
error: wrong types for suggestion
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:605:24
2022-09-10 07:43:07 -05:00
|
LL | suggestion: (Span, usize),
| ^^^^^
|
= help: `#[suggestion(...)]` on a tuple field must be applied to fields of type `(Span, Applicability)`
error: wrong types for suggestion
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:613:17
2022-09-10 07:43:07 -05:00
|
LL | suggestion: (Span,),
| ^^^^^^^
|
= help: `#[suggestion(...)]` on a tuple field must be applied to fields of type `(Span, Applicability)`
2022-09-14 10:19:40 -05:00
error: suggestion without `code = "..."`
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:620:5
2022-09-14 10:19:40 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[suggestion(suggestion)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-14 10:19:40 -05:00
error: `#[multipart_suggestion(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:627:1
2022-09-14 10:19:40 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[multipart_suggestion(suggestion)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-14 10:19:40 -05:00
|
= help: consider creating a `Subdiagnostic` instead
error: `#[multipart_suggestion(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:630:1
2022-09-14 10:19:40 -05:00
|
LL | #[multipart_suggestion()]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider creating a `Subdiagnostic` instead
error: `#[multipart_suggestion(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:634:5
2022-09-14 10:19:40 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[multipart_suggestion(suggestion)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-14 10:19:40 -05:00
|
= help: consider creating a `Subdiagnostic` instead
error: `#[suggestion(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:642:1
2022-09-14 10:19:40 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[suggestion(suggestion, code = "...")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-14 10:19:40 -05:00
|
= help: `#[label]` and `#[suggestion]` can only be applied to fields
error: `#[label]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:651:1
2022-09-14 10:19:40 -05:00
|
LL | #[label]
| ^^^^^^^^
|
= help: `#[label]` and `#[suggestion]` can only be applied to fields
2022-12-03 18:13:21 -06:00
error: `#[subdiagnostic(...)]` is not a valid attribute
--> $DIR/diagnostic-derive.rs:685:5
2022-10-03 08:24:17 -05:00
|
LL | #[subdiagnostic(bad)]
2022-12-03 18:13:21 -06:00
| ^^^^^^^^^^^^^^^^^^^^^
2022-10-03 08:24:17 -05:00
|
2023-01-08 17:00:41 -06:00
= help: `eager` is the only supported nested attribute for `subdiagnostic`
2022-10-03 08:24:17 -05:00
error: `#[subdiagnostic = ...]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:693:5
2022-10-03 08:24:17 -05:00
|
LL | #[subdiagnostic = "bad"]
| ^^^^^^^^^^^^^^^^^^^^^^^^
error: `#[subdiagnostic(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:701:5
2022-10-03 08:24:17 -05:00
|
LL | #[subdiagnostic(bad, bad)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-01-08 17:00:41 -06:00
= help: `eager` is the only supported nested attribute for `subdiagnostic`
2022-10-03 08:24:17 -05:00
2022-12-03 18:13:21 -06:00
error: `#[subdiagnostic(...)]` is not a valid attribute
--> $DIR/diagnostic-derive.rs:709:5
2022-10-03 08:24:17 -05:00
|
LL | #[subdiagnostic("bad")]
2022-12-03 18:13:21 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^
2022-10-03 08:24:17 -05:00
|
2023-01-08 17:00:41 -06:00
= help: `eager` is the only supported nested attribute for `subdiagnostic`
2022-10-03 08:24:17 -05:00
error: `#[subdiagnostic(...)]` is not a valid attribute
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:717:5
2022-10-03 08:24:17 -05:00
|
LL | #[subdiagnostic(eager)]
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2023-01-08 17:00:41 -06:00
= help: eager subdiagnostics are not supported on lints
2022-10-03 08:24:17 -05:00
2022-10-17 12:41:49 -05:00
error: expected at least one string literal for `code(...)`
2023-01-08 17:00:41 -06:00
--> $DIR/diagnostic-derive.rs:775:18
2022-10-17 12:41:49 -05:00
|
LL | #[suggestion(code())]
| ^^^^^^
error: `code(...)` must contain only string literals
2023-01-08 17:00:41 -06:00
--> $DIR/diagnostic-derive.rs:783:23
2022-10-17 12:41:49 -05:00
|
LL | #[suggestion(code(foo))]
| ^^^
error: `code = "..."`/`code(...)` must contain only string literals
2023-01-08 17:00:41 -06:00
--> $DIR/diagnostic-derive.rs:791:18
2022-10-17 12:41:49 -05:00
|
LL | #[suggestion(code = 3)]
| ^^^^^^^^
2022-03-31 02:35:17 -05:00
error: cannot find attribute `nonsense` in this scope
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:55:3
2022-03-31 02:35:17 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[nonsense(compiletest_example, code = "E0123")]
2022-03-31 02:35:17 -05:00
| ^^^^^^^^
error: cannot find attribute `nonsense` in this scope
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:145:7
2022-03-31 02:35:17 -05:00
|
LL | #[nonsense]
| ^^^^^^^^
2022-08-19 08:40:48 -05:00
error: cannot find attribute `error` in this scope
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:565:3
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[error(compiletest_example, code = "E0123")]
2022-08-19 08:40:48 -05:00
| ^^^^^
2022-08-24 10:57:10 -05:00
error: cannot find attribute `warn_` in this scope
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:572:3
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[warn_(compiletest_example, code = "E0123")]
2022-08-24 10:57:10 -05:00
| ^^^^^ help: a built-in attribute with a similar name exists: `warn`
2022-08-19 08:40:48 -05:00
error: cannot find attribute `lint` in this scope
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:579:3
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[lint(compiletest_example, code = "E0123")]
2022-08-19 08:40:48 -05:00
| ^^^^ help: a built-in attribute with a similar name exists: `link`
error: cannot find attribute `lint` in this scope
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:586:3
2022-08-19 08:40:48 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[lint(compiletest_example, code = "E0123")]
2022-08-19 08:40:48 -05:00
| ^^^^ help: a built-in attribute with a similar name exists: `link`
2022-09-14 10:19:40 -05:00
error: cannot find attribute `multipart_suggestion` in this scope
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:627:3
2022-09-14 10:19:40 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[multipart_suggestion(suggestion)]
2022-09-14 10:19:40 -05:00
| ^^^^^^^^^^^^^^^^^^^^
error: cannot find attribute `multipart_suggestion` in this scope
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:630:3
2022-09-14 10:19:40 -05:00
|
LL | #[multipart_suggestion()]
| ^^^^^^^^^^^^^^^^^^^^
error: cannot find attribute `multipart_suggestion` in this scope
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:634:7
2022-09-14 10:19:40 -05:00
|
2022-10-22 04:08:09 -05:00
LL | #[multipart_suggestion(suggestion)]
2022-09-14 10:19:40 -05:00
| ^^^^^^^^^^^^^^^^^^^^
2022-06-23 08:51:44 -05:00
error[E0425]: cannot find value `nonsense` in module `rustc_errors::fluent`
2022-09-23 06:49:02 -05:00
--> $DIR/diagnostic-derive.rs:68:8
2022-06-23 08:51:44 -05:00
|
2022-08-19 08:40:48 -05:00
LL | #[diag(nonsense, code = "E0123")]
| ^^^^^^^^ not found in `rustc_errors::fluent`
2022-06-23 08:51:44 -05:00
2022-05-07 01:26:03 -05:00
error[E0277]: the trait bound `Hello: IntoDiagnosticArg` is not satisfied
2022-10-22 10:21:11 -05:00
--> $DIR/diagnostic-derive.rs:339:10
2022-03-31 03:02:31 -05:00
|
2022-09-18 10:46:56 -05:00
LL | #[derive(Diagnostic)]
2022-09-14 23:01:44 -05:00
| ^^^^^^^^^^ the trait `IntoDiagnosticArg` is not implemented for `Hello`
2022-05-07 01:26:03 -05:00
|
2022-06-29 03:21:44 -05:00
= help: normalized in stderr
2022-05-07 01:26:03 -05:00
note: required by a bound in `DiagnosticBuilder::<'a, G>::set_arg`
2022-08-31 09:46:51 -05:00
--> $COMPILER_DIR/rustc_errors/src/diagnostic_builder.rs:LL:CC
2022-12-12 11:32:20 -06:00
= note: this error originates in the derive macro `Diagnostic` which comes from the expansion of the macro `forward` (in Nightly builds, run with -Z macro-backtrace for more info)
2022-03-31 03:02:31 -05:00
2023-01-08 17:00:41 -06:00
error: aborting due to 83 previous errors
2020-08-27 05:00:21 -05:00
2022-06-23 08:51:44 -05:00
Some errors have detailed explanations: E0277, E0425.
For more information about an error, try `rustc --explain E0277`.