]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-15207.rs
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / issues / issue-15207.rs
1 fn main() {
2     loop {
3         break.push(1) //~ ERROR no method named `push` found for type `!`
4         ;
5     }
6 }