rust/tests/compile-fail/ctlz_nonzero.rs

16 lines
248 B
Rust
Raw Normal View History

2017-06-22 16:42:23 -05:00
#![feature(intrinsics)]
mod rusti {
extern "rust-intrinsic" {
pub fn ctlz_nonzero<T>(x: T) -> T;
}
}
pub fn main() {
unsafe {
use crate::rusti::*;
2017-06-22 16:42:23 -05:00
2019-04-21 06:18:05 -05:00
ctlz_nonzero(0u8); //~ ERROR ctlz_nonzero called on 0
2017-06-22 16:42:23 -05:00
}
}