From df564451db4e1c55bcb3e44863ec931eafe3de8a Mon Sep 17 00:00:00 2001 From: Daan Sprenkels Date: Sun, 12 Jun 2016 20:59:49 +0200 Subject: [PATCH] Add regression test for #32364 --- src/test/codegen/issue-32364.rs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/test/codegen/issue-32364.rs diff --git a/src/test/codegen/issue-32364.rs b/src/test/codegen/issue-32364.rs new file mode 100644 index 00000000000..926987be0e0 --- /dev/null +++ b/src/test/codegen/issue-32364.rs @@ -0,0 +1,24 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// compile-flags: -C no-prepopulate-passes + +struct Foo; + +impl Foo { +// CHECK: define internal x86_stdcallcc void @{{.*}}foo{{.*}}() + #[inline(never)] + pub extern "stdcall" fn foo() { + } +} + +fn main() { + Foo::foo::(); +}