11 lines
163 B
Rust
11 lines
163 B
Rust
//@ only-x86_64
|
|
|
|
#![feature(target_feature_11)]
|
|
|
|
#[target_feature(enable = "sse2")]
|
|
fn foo() {}
|
|
|
|
fn main() {
|
|
let foo: fn() = foo; //~ ERROR mismatched types
|
|
}
|