12 lines
217 B
Rust
12 lines
217 B
Rust
// -*- rust -*-
|
|
// xfail-stage0
|
|
// Tests that a function with a ! annotation always actually fails
|
|
// error-pattern: some control paths may return
|
|
|
|
fn bad_bang(uint i) -> ! {
|
|
ret 7u;
|
|
}
|
|
|
|
fn main() {
|
|
bad_bang(5u);
|
|
} |