]> git.proxmox.com Git - rustc.git/blame - src/test/ui/loops/loop-properly-diverging-2.stderr
New upstream version 1.38.0+dfsg1
[rustc.git] / src / test / ui / loops / loop-properly-diverging-2.stderr
CommitLineData
b7449926 1error[E0308]: mismatched types
0731742a 2 --> $DIR/loop-properly-diverging-2.rs:2:23
b7449926 3 |
532ac7d7 4LL | let x: i32 = loop { break };
416331ca
XL
5 | ^^^^^
6 | |
7 | expected i32, found ()
8 | help: give it a value of the expected type: `break 42`
b7449926 9 |
416331ca
XL
10 = note: expected type `i32`
11 found type `()`
b7449926
XL
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0308`.