]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issues/issue-87812-path.stderr
Rollup merge of #91346 - ibraheemdev:result-inspect, r=dtolnay
[rust.git] / src / test / ui / parser / issues / issue-87812-path.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-87812-path.rs:3:24
3    |
4 LL |         let _: usize = $f;
5    |                -----   ^^ expected `usize`, found struct `Baz`
6    |                |
7    |                expected due to this
8 ...
9 LL |     foo!(Baz);
10    |     --------- in this macro invocation
11    |
12    = note: this error originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info)
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0308`.