]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/break-token-spans.stderr
Rollup merge of #106816 - TimNN:rental-remap, r=oli-obj
[rust.git] / tests / ui / proc-macro / break-token-spans.stderr
1 error[E0425]: cannot find function `f` in this scope
2   --> $DIR/break-token-spans.rs:13:5
3    |
4 LL |     f :: < Vec < _ > > ( ) ;
5    |     ^ not found in this scope
6
7 error[E0308]: mismatched types
8   --> $DIR/break-token-spans.rs:14:32
9    |
10 LL |     let a: Option<Option<u8>>= true;
11    |            ------------------  ^^^^ expected enum `Option`, found `bool`
12    |            |
13    |            expected due to this
14    |
15    = note: expected enum `Option<Option<u8>>`
16               found type `bool`
17
18 error: aborting due to 2 previous errors
19
20 Some errors have detailed explanations: E0308, E0425.
21 For more information about an error, try `rustc --explain E0308`.