summaryrefslogtreecommitdiffstats
path: root/src/test/ui/extern/extern-thiscall.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/extern/extern-thiscall.rs')
-rw-r--r--src/test/ui/extern/extern-thiscall.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/ui/extern/extern-thiscall.rs b/src/test/ui/extern/extern-thiscall.rs
new file mode 100644
index 000000000..717df57ec
--- /dev/null
+++ b/src/test/ui/extern/extern-thiscall.rs
@@ -0,0 +1,25 @@
+// run-pass
+// only-x86
+
+#![feature(abi_thiscall)]
+
+trait A {
+ extern "thiscall" fn test1(i: i32);
+}
+
+struct S;
+
+impl A for S {
+ extern "thiscall" fn test1(i: i32) {
+ assert_eq!(i, 1);
+ }
+}
+
+extern "thiscall" fn test2(i: i32) {
+ assert_eq!(i, 2);
+}
+
+fn main() {
+ <S as A>::test1(1);
+ test2(2);
+}