2018-02-07 21:35:35 -06:00
|
|
|
error[E0516]: `typeof` is a reserved keyword but unimplemented
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0516.rs:2:12
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let x: typeof(92) = 92;
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^^^^^^^^^^ reserved keyword
|
2022-04-10 07:45:09 -05:00
|
|
|
|
|
|
|
|
help: consider replacing `typeof(...)` with an actual type
|
|
|
|
|
|
|
|
|
LL | let x: i32 = 92;
|
|
|
|
| ~~~
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0516`.
|