mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
16 lines
394 B
Plaintext
16 lines
394 B
Plaintext
error: expected at least one digit in exponent
|
|
--> $DIR/issue-91434.rs:2:11
|
|
|
|
|
LL | [9; [[9E; h]]];
|
|
| ^^
|
|
|
|
error[E0425]: cannot find value `h` in this scope
|
|
--> $DIR/issue-91434.rs:2:15
|
|
|
|
|
LL | [9; [[9E; h]]];
|
|
| ^ not found in this scope
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|