Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
never
/
never-type-method-call-15207.rs
blob: 69cdeeabb7c9685f35032cc4a20487efb41d7436 [
file
] [
log
] [
blame
]
//! 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 `!`
;
}
}