11 lines
332 B
Text
11 lines
332 B
Text
error[E0516]: `typeof` is a reserved keyword but unimplemented
|
|
--> $DIR/E0516.rs:2:12
|
|
|
|
|
LL | let x: typeof(92) = 92;
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: consider replacing `typeof(...)` with an actual type
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0516`.
|