summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0267.stderr
blob: b14cfd1a52d47de731e00bcfd7e3916567ca09fb (plain)
1
2
3
4
5
6
7
8
9
error[E0267]: `break` inside of a closure
  --> $DIR/E0267.rs:2:18
   |
LL |     let w = || { break; };
   |                  ^^^^^ cannot break inside of a closure

error: aborting due to previous error

For more information about this error, try `rustc --explain E0267`.