diff options
Diffstat (limited to 'tests/codegen/issue-32364.rs')
-rw-r--r-- | tests/codegen/issue-32364.rs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/codegen/issue-32364.rs b/tests/codegen/issue-32364.rs deleted file mode 100644 index 85493a4bb..000000000 --- a/tests/codegen/issue-32364.rs +++ /dev/null @@ -1,18 +0,0 @@ -// Test that `extern "stdcall"` is properly translated. - -// only-x86 - -// compile-flags: -C no-prepopulate-passes - -struct Foo; - -impl Foo { -// CHECK: define internal x86_stdcallcc void @{{.*}}foo{{.*}}() - #[inline(never)] - pub extern "stdcall" fn foo<T>() { - } -} - -fn main() { - Foo::foo::<Foo>(); -} |