]> git.proxmox.com Git - rustc.git/blame - src/test/ui/inference/char-as-str-multi.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / inference / char-as-str-multi.stderr
CommitLineData
a2a8927a
XL
1error[E0308]: mismatched types
2 --> $DIR/char-as-str-multi.rs:5:19
3 |
4LL | let _: char = "foo";
5 | ---- ^^^^^ expected `char`, found `&str`
6 | |
7 | expected due to this
8
5099ac24
FG
9error[E0308]: mismatched types
10 --> $DIR/char-as-str-multi.rs:6:19
11 |
12LL | let _: char = "";
13 | ---- ^^ expected `char`, found `&str`
14 | |
15 | expected due to this
16
17error: aborting due to 2 previous errors
a2a8927a
XL
18
19For more information about this error, try `rustc --explain E0308`.