mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
282 B
Rust
17 lines
282 B
Rust
#![feature(intrinsics)]
|
|
|
|
trait Foo {
|
|
extern "rust-intrinsic" fn foo(&self); //~ ERROR intrinsic must
|
|
}
|
|
|
|
impl Foo for () {
|
|
extern "rust-intrinsic" fn foo(&self) { //~ ERROR intrinsic must
|
|
}
|
|
}
|
|
|
|
extern "rust-intrinsic" fn hello() {//~ ERROR intrinsic must
|
|
}
|
|
|
|
fn main() {
|
|
}
|