blob: 3ecea5c5313901878d07384cd515ac4f2df4cf7c [file] [log] [blame]
// only-x86_64
#![feature(target_feature_11)]
#[target_feature(enable = "sse2")]
fn foo() {}
fn main() {
let foo: fn() = foo; //~ ERROR mismatched types
}