mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
104 lines
4.1 KiB
Plaintext
104 lines
4.1 KiB
Plaintext
error[E0412]: cannot find type `FromOutside` in this scope
|
|
--> $DIR/generate-mod.rs:9:1
|
|
|
|
|
LL | generate_mod::check!();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
FromOutside
|
|
= note: this error originates in the macro `generate_mod::check` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0412]: cannot find type `Outer` in this scope
|
|
--> $DIR/generate-mod.rs:9:1
|
|
|
|
|
LL | generate_mod::check!();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
Outer
|
|
= note: this error originates in the macro `generate_mod::check` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
|
--> $DIR/generate-mod.rs:12:1
|
|
|
|
|
LL | #[generate_mod::check_attr]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
FromOutside
|
|
= note: this error originates in the attribute macro `generate_mod::check_attr` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0412]: cannot find type `OuterAttr` in this scope
|
|
--> $DIR/generate-mod.rs:12:1
|
|
|
|
|
LL | #[generate_mod::check_attr]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
OuterAttr
|
|
= note: this error originates in the attribute macro `generate_mod::check_attr` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
|
--> $DIR/generate-mod.rs:16:10
|
|
|
|
|
LL | #[derive(generate_mod::CheckDerive)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
FromOutside
|
|
= note: this error originates in the derive macro `generate_mod::CheckDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0412]: cannot find type `OuterDerive` in this scope
|
|
--> $DIR/generate-mod.rs:16:10
|
|
|
|
|
LL | #[derive(generate_mod::CheckDerive)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
OuterDerive
|
|
= note: this error originates in the derive macro `generate_mod::CheckDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
|
--> $DIR/generate-mod.rs:21:14
|
|
|
|
|
LL | #[derive(generate_mod::CheckDerive)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
FromOutside
|
|
= note: this error originates in the derive macro `generate_mod::CheckDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0412]: cannot find type `OuterDerive` in this scope
|
|
--> $DIR/generate-mod.rs:21:14
|
|
|
|
|
LL | #[derive(generate_mod::CheckDerive)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
OuterDerive
|
|
= note: this error originates in the derive macro `generate_mod::CheckDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
|
--> $DIR/generate-mod.rs:26:10
|
|
|
|
|
LL | #[derive(generate_mod::CheckDeriveLint)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
FromOutside
|
|
= note: this error originates in the derive macro `generate_mod::CheckDeriveLint` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0412]: cannot find type `OuterDeriveLint` in this scope
|
|
--> $DIR/generate-mod.rs:26:10
|
|
|
|
|
LL | #[derive(generate_mod::CheckDeriveLint)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
= help: consider importing this struct:
|
|
OuterDeriveLint
|
|
= note: this error originates in the derive macro `generate_mod::CheckDeriveLint` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 10 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0412`.
|