about summary refs log tree commit diff
path: root/tests/ui/never/never-type-method-call-15207.rs
blob: 69cdeeabb7c9685f35032cc4a20487efb41d7436 (plain)
1
2
3
4
5
6
7
8
//! Regression test for https://github.com/rust-lang/rust/issues/15207

fn main() {
    loop {
        break.push(1) //~ ERROR no method named `push` found for type `!`
        ;
    }
}