]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/issue-61033-1.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / macros / issue-61033-1.stderr
1 error: this must repeat at least once
2   --> $DIR/issue-61033-1.rs:4:34
3    |
4 LL |     ($x:ident, $($tt:tt)*) => { $($tt)+ }
5    |                                  ^^^^^
6
7 error[E0308]: mismatched types
8   --> $DIR/issue-61033-1.rs:9:33
9    |
10 LL |     let _recovery_witness: () = 0;
11    |                            --   ^ expected `()`, found integer
12    |                            |
13    |                            expected due to this
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0308`.