]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-15207.rs
point at private fields in struct literal
[rust.git] / src / test / 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 }