2022-10-13 09:57:50 -05:00
|
|
|
error[E0516]: `typeof` is a reserved keyword but unimplemented
|
|
|
|
--> $DIR/issue-102986.rs:2:9
|
|
|
|
|
|
|
|
|
LL | y: (typeof("hey"),),
|
|
|
|
| ^^^^^^^^^^^^^ reserved keyword
|
|
|
|
|
|
|
|
|
help: consider replacing `typeof(...)` with an actual type
|
|
|
|
|
|
2024-02-01 02:18:55 -06:00
|
|
|
LL | y: (&str,),
|
|
|
|
| ~~~~
|
2022-10-13 09:57:50 -05:00
|
|
|
|
2023-11-21 10:44:51 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-10-13 09:57:50 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0516`.
|