blob: c0d872bc14beb48ccc7b0ec8fcbd405cd9f2a571 [file] [log] [blame]
//@ run-pass
//@ revisions: x64 x32
//@ [x64]only-x86_64
//@ [x32]only-x86
#![feature(abi_vectorcall)]
trait A {
extern "vectorcall" fn test1(i: i32);
}
struct S;
impl A for S {
extern "vectorcall" fn test1(i: i32) {
assert_eq!(i, 1);
}
}
extern "vectorcall" fn test2(i: i32) {
assert_eq!(i, 2);
}
fn main() {
<S as A>::test1(1);
test2(2);
}