os-rust/src/test/ui/consts/const-int-sign.rs

5 lines
188 B
Rust
Raw Normal View History

2018-09-01 15:05:55 +02:00
fn main() {
let x: &'static bool = &(5_i32.is_negative()); //~ ERROR does not live long enough
let y: &'static bool = &(5_i32.is_positive()); //~ ERROR does not live long enough
}