]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeof/issue-100183.stderr
Rollup merge of #105674 - estebank:iterator-chains, r=oli-obk
[rust.git] / src / test / ui / typeof / issue-100183.stderr
1 error[E0516]: `typeof` is a reserved keyword but unimplemented
2   --> $DIR/issue-100183.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`.