]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-46302.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-46302.stderr
1 error[E0308]: mismatched types
2 --> $DIR/issue-46302.rs:3:27
3 |
4 LL | let u: &str = if true { s[..2] } else { s };
5 | ^^^^^^
6 | |
7 | expected `&str`, found `str`
8 | help: consider borrowing here: `&s[..2]`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.