]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/issue-102986.stderr
Rollup merge of #107348 - lcnr:project-solve-new, r=compiler-errors
[rust.git] / tests / rustdoc-ui / issue-102986.stderr
1 error[E0516]: `typeof` is a reserved keyword but unimplemented
2   --> $DIR/issue-102986.rs:2:9
3    |
4 LL |     y: (typeof("hey"),),
5    |         ^^^^^^^^^^^^^ reserved keyword
6    |
7 help: consider replacing `typeof(...)` with an actual type
8    |
9 LL |     y: (&'static str,),
10    |         ~~~~~~~~~~~~
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0516`.