summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-ui/issue-102986.stderr
blob: 3a573726c9727a4ce2edde9a190ed8a4b85d257c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 previous error

For more information about this error, try `rustc --explain E0516`.