blob: 02e257a9163c12ad38ef0d01694ec06c0509a5fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0516]: `typeof` is a reserved keyword but unimplemented
--> $DIR/ice-typeof-102986.rs:3:9
|
LL | y: (typeof("hey"),),
| ^^^^^^^^^^^^^ reserved keyword
|
help: consider replacing `typeof(...)` with an actual type
|
LL - y: (typeof("hey"),),
LL + y: (&str,),
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0516`.
|