87a354b15d
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
15 lines
407 B
Plaintext
15 lines
407 B
Plaintext
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
|
|
|
|
|
LL | y: (&'static str,),
|
|
| ~~~~~~~~~~~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0516`.
|