2019-06-23 13:37:28 +00:00
|
|
|
error[E0425]: cannot find value `Opaque` in this scope
|
|
|
|
--> $DIR/rustc-macro-transparency.rs:26:5
|
|
|
|
|
|
|
|
|
LL | Opaque;
|
2021-10-16 19:51:22 +00:00
|
|
|
| ^^^^^^ not found in this scope
|
2019-06-23 13:37:28 +00:00
|
|
|
|
2019-07-15 00:28:17 +00:00
|
|
|
error[E0423]: expected value, found macro `semitransparent`
|
2019-06-23 13:37:28 +00:00
|
|
|
--> $DIR/rustc-macro-transparency.rs:29:5
|
|
|
|
|
|
2021-10-16 19:51:22 +00:00
|
|
|
LL | struct SemiTransparent;
|
|
|
|
| ----------------------- similarly named unit struct `SemiTransparent` defined here
|
|
|
|
...
|
2019-06-23 13:37:28 +00:00
|
|
|
LL | semitransparent;
|
2022-01-19 02:27:15 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| not a value
|
|
|
|
| help: a unit struct with a similar name exists: `SemiTransparent`
|
2019-06-23 13:37:28 +00:00
|
|
|
|
2019-07-15 00:28:17 +00:00
|
|
|
error[E0423]: expected value, found macro `opaque`
|
2019-06-23 13:37:28 +00:00
|
|
|
--> $DIR/rustc-macro-transparency.rs:30:5
|
|
|
|
|
|
|
|
|
LL | opaque;
|
2022-10-16 08:51:11 +00:00
|
|
|
| ^^^^^^ not a value
|
2019-06-23 13:37:28 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-07-15 00:28:17 +00:00
|
|
|
Some errors have detailed explanations: E0423, E0425.
|
|
|
|
For more information about an error, try `rustc --explain E0423`.
|