rust/tests/ui/reserved/meta-is-not-reserved.stderr
KaiTomotake eeed3376e2
add test program
A test for the issue where the variable meta is mistakenly treated as a reserved keyword.
2026-01-19 19:49:07 +09:00

9 lines
281 B
Text

error[E0425]: cannot find value `meta` in this scope
--> $DIR/meta-is-not-reserved.rs:5:15
|
LL | let xyz = meta;
| ^^^^ not found in this scope
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0425`.