Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
158 B
Rust
Raw Normal View History

2016-08-04 01:51:52 +02:00
#![feature(intrinsics)]
#![feature(rustc_attrs)]
2016-08-04 01:51:52 +02:00
extern "rust-intrinsic" {
#[rustc_safe_intrinsic]
2016-08-04 01:51:52 +02:00
fn size_of<T>(); //~ ERROR E0308
}
fn main() {
}