about summary refs log tree commit diff
path: root/tests/ui/typeof/issue-100183.stderr
blob: 765a5c54428f89ebd6ccf826636ceeaf9cf95ca4 (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/issue-100183.rs:2: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`.