rust/tests/ui/macros/macros-nonfatal-errors.stderr

275 lines
8.0 KiB
Plaintext
Raw Normal View History

error: the `#[default]` attribute may only be used on unit enum variants
2022-02-28 20:33:50 +00:00
--> $DIR/macros-nonfatal-errors.rs:13:5
|
LL | #[default]
| ^^^^^^^^^^
|
= help: consider a manual implementation of `Default`
error: the `#[default]` attribute may only be used on unit enum variants
2022-02-28 20:33:50 +00:00
--> $DIR/macros-nonfatal-errors.rs:18:36
|
LL | struct DefaultInnerAttrTupleStruct(#[default] ());
| ^^^^^^^^^^
|
= help: consider a manual implementation of `Default`
error: the `#[default]` attribute may only be used on unit enum variants
2022-02-28 20:33:50 +00:00
--> $DIR/macros-nonfatal-errors.rs:22:1
|
LL | #[default]
| ^^^^^^^^^^
|
= help: consider a manual implementation of `Default`
error: the `#[default]` attribute may only be used on unit enum variants
2022-02-28 20:33:50 +00:00
--> $DIR/macros-nonfatal-errors.rs:26:1
|
LL | #[default]
| ^^^^^^^^^^
|
= help: consider a manual implementation of `Default`
error: the `#[default]` attribute may only be used on unit enum variants
2022-02-28 20:33:50 +00:00
--> $DIR/macros-nonfatal-errors.rs:36:11
|
LL | Foo = #[default] 0,
| ^^^^^^^^^^
|
= help: consider a manual implementation of `Default`
error: the `#[default]` attribute may only be used on unit enum variants
2022-02-28 20:33:50 +00:00
--> $DIR/macros-nonfatal-errors.rs:37:14
|
LL | Bar([u8; #[default] 1]),
| ^^^^^^^^^^
|
= help: consider a manual implementation of `Default`
error[E0665]: `#[derive(Default)]` on enum with no `#[default]`
2022-02-28 20:33:50 +00:00
--> $DIR/macros-nonfatal-errors.rs:42:10
2018-08-08 12:28:26 +00:00
|
LL | #[derive(Default)]
| ^^^^^^^
LL | / enum NoDeclaredDefault {
LL | | Foo,
LL | | Bar,
LL | | }
| |_- this enum needs a unit variant marked with `#[default]`
|
= note: this error originates in the derive macro `Default` (in Nightly builds, run with -Z macro-backtrace for more info)
help: make this unit variant default by placing `#[default]` on it
|
LL | #[default] Foo,
| ++++++++++
help: make this unit variant default by placing `#[default]` on it
|
LL | #[default] Bar,
| ++++++++++
2018-08-08 12:28:26 +00:00
error[E0665]: `#[derive(Default)]` on enum with no `#[default]`
2022-02-28 20:33:50 +00:00
--> $DIR/macros-nonfatal-errors.rs:48:10
|
LL | #[derive(Default)]
| ^^^^^^^
LL | / enum NoDeclaredDefaultWithoutUnitVariant {
LL | | Foo(i32),
LL | | Bar(i32),
LL | | }
| |_- this enum needs a unit variant marked with `#[default]`
|
= note: this error originates in the derive macro `Default` (in Nightly builds, run with -Z macro-backtrace for more info)
error: multiple declared defaults
--> $DIR/macros-nonfatal-errors.rs:54:10
|
LL | #[derive(Default)]
| ^^^^^^^
...
LL | Foo,
| --- first default
LL | #[default]
LL | Bar,
| --- additional default
LL | #[default]
LL | Baz,
| --- additional default
|
= note: only one variant can be default
= note: this error originates in the derive macro `Default` (in Nightly builds, run with -Z macro-backtrace for more info)
error: `#[default]` attribute does not accept a value
--> $DIR/macros-nonfatal-errors.rs:66:5
|
LL | #[default = 1]
| ^^^^^^^^^^^^^^
|
= help: try using `#[default]`
error: multiple `#[default]` attributes
--> $DIR/macros-nonfatal-errors.rs:74:5
|
LL | #[default]
| ---------- `#[default]` used here
LL | #[default]
| ---------- `#[default]` used again here
LL | Foo,
| ^^^
|
= note: only one `#[default]` attribute is needed
help: try removing this
--> $DIR/macros-nonfatal-errors.rs:73:5
|
LL | #[default]
| ^^^^^^^^^^
error: multiple `#[default]` attributes
--> $DIR/macros-nonfatal-errors.rs:84:5
|
LL | #[default]
| ---------- `#[default]` used here
LL | #[default]
| ---------- `#[default]` used again here
...
LL | Foo,
| ^^^
|
= note: only one `#[default]` attribute is needed
help: try removing these
--> $DIR/macros-nonfatal-errors.rs:81:5
|
LL | #[default]
| ^^^^^^^^^^
LL | #[default]
| ^^^^^^^^^^
LL | #[default]
| ^^^^^^^^^^
error: the `#[default]` attribute may only be used on unit enum variants
--> $DIR/macros-nonfatal-errors.rs:91:5
|
LL | Foo {},
| ^^^
|
= help: consider a manual implementation of `Default`
error: default variant must be exhaustive
--> $DIR/macros-nonfatal-errors.rs:99:5
|
LL | #[non_exhaustive]
| ----------------- declared `#[non_exhaustive]` here
LL | Foo,
| ^^^
|
= help: consider a manual implementation of `Default`
2021-12-11 00:11:26 +00:00
error: asm template must be a string literal
--> $DIR/macros-nonfatal-errors.rs:104:10
2021-12-11 00:11:26 +00:00
|
LL | asm!(invalid);
| ^^^^^^^
error: `concat_idents!()` requires ident args
--> $DIR/macros-nonfatal-errors.rs:107:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | concat_idents!("not", "idents");
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 12:28:26 +00:00
error: argument must be a string literal
--> $DIR/macros-nonfatal-errors.rs:109:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | option_env!(invalid);
2018-08-08 12:28:26 +00:00
| ^^^^^^^
error: expected string literal
--> $DIR/macros-nonfatal-errors.rs:110:10
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | env!(invalid);
2018-08-08 12:28:26 +00:00
| ^^^^^^^
error: `env!()` takes 1 or 2 arguments
--> $DIR/macros-nonfatal-errors.rs:111:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | env!(foo, abr, baz);
| ^^^^^^^^^^^^^^^^^^^
2018-08-08 12:28:26 +00:00
error: environment variable `RUST_HOPEFULLY_THIS_DOESNT_EXIST` not defined at compile time
--> $DIR/macros-nonfatal-errors.rs:112:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | env!("RUST_HOPEFULLY_THIS_DOESNT_EXIST");
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-05-26 23:45:30 +00:00
|
= help: use `std::env::var("RUST_HOPEFULLY_THIS_DOESNT_EXIST")` to read the variable at run time
= note: this error originates in the macro `env` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: format argument must be a string literal
--> $DIR/macros-nonfatal-errors.rs:114:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | format!(invalid);
2018-08-08 12:28:26 +00:00
| ^^^^^^^
|
2018-08-08 12:28:26 +00:00
help: you might be missing a string literal to format with
|
2019-03-09 12:03:44 +00:00
LL | format!("{}", invalid);
| +++++
2018-08-08 12:28:26 +00:00
error: argument must be a string literal
--> $DIR/macros-nonfatal-errors.rs:116:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | include!(invalid);
2018-08-08 12:28:26 +00:00
| ^^^^^^^
error: argument must be a string literal
--> $DIR/macros-nonfatal-errors.rs:118:18
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | include_str!(invalid);
2018-08-08 12:28:26 +00:00
| ^^^^^^^
2024-03-01 02:49:02 +00:00
error: couldn't read `$DIR/i'd be quite surprised if a file with this name existed`: $FILE_NOT_FOUND_MSG
--> $DIR/macros-nonfatal-errors.rs:119:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | include_str!("i'd be quite surprised if a file with this name existed");
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_str` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: argument must be a string literal
--> $DIR/macros-nonfatal-errors.rs:120:20
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | include_bytes!(invalid);
2018-08-08 12:28:26 +00:00
| ^^^^^^^
2024-03-01 02:49:02 +00:00
error: couldn't read `$DIR/i'd be quite surprised if a file with this name existed`: $FILE_NOT_FOUND_MSG
--> $DIR/macros-nonfatal-errors.rs:121:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | include_bytes!("i'd be quite surprised if a file with this name existed");
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: trace_macros! accepts only `true` or `false`
--> $DIR/macros-nonfatal-errors.rs:123:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | trace_macros!(invalid);
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 12:28:26 +00:00
error: default variant must be exhaustive
--> $DIR/macros-nonfatal-errors.rs:133:9
|
LL | #[non_exhaustive]
| ----------------- declared `#[non_exhaustive]` here
LL | Foo,
| ^^^
|
= help: consider a manual implementation of `Default`
error: cannot find macro `llvm_asm` in this scope
--> $DIR/macros-nonfatal-errors.rs:105:5
|
LL | llvm_asm!(invalid);
| ^^^^^^^^
error: aborting due to 29 previous errors
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0665`.