bfe5189904
This reverts commit b379d216ee
.
13 lines
226 B
Rust
13 lines
226 B
Rust
// revisions: mir thir
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
// only-x86_64
|
|
|
|
#![feature(target_feature_11)]
|
|
|
|
#[target_feature(enable = "sse2")]
|
|
fn foo() {}
|
|
|
|
fn main() {
|
|
let foo: fn() = foo; //~ ERROR mismatched types
|
|
}
|