summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-abi_amdgpu_kernel.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/feature-gates/feature-gate-abi_amdgpu_kernel.rs')
-rw-r--r--src/test/ui/feature-gates/feature-gate-abi_amdgpu_kernel.rs30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/test/ui/feature-gates/feature-gate-abi_amdgpu_kernel.rs b/src/test/ui/feature-gates/feature-gate-abi_amdgpu_kernel.rs
new file mode 100644
index 000000000..465b81d7f
--- /dev/null
+++ b/src/test/ui/feature-gates/feature-gate-abi_amdgpu_kernel.rs
@@ -0,0 +1,30 @@
+// compile-flags: --crate-type=rlib
+#![no_core]
+#![feature(no_core, lang_items)]
+#[lang="sized"]
+trait Sized { }
+
+extern "amdgpu-kernel" fn fu() {} //~ ERROR amdgpu-kernel ABI is experimental
+//~^ ERROR is not a supported ABI
+
+trait T {
+ extern "amdgpu-kernel" fn mu(); //~ ERROR amdgpu-kernel ABI is experimental
+ extern "amdgpu-kernel" fn dmu() {} //~ ERROR amdgpu-kernel ABI is experimental
+ //~^ ERROR is not a supported ABI
+}
+
+struct S;
+impl T for S {
+ extern "amdgpu-kernel" fn mu() {} //~ ERROR amdgpu-kernel ABI is experimental
+ //~^ ERROR is not a supported ABI
+}
+
+impl S {
+ extern "amdgpu-kernel" fn imu() {} //~ ERROR amdgpu-kernel ABI is experimental
+ //~^ ERROR is not a supported ABI
+}
+
+type TAU = extern "amdgpu-kernel" fn(); //~ ERROR amdgpu-kernel ABI is experimental
+
+extern "amdgpu-kernel" {} //~ ERROR amdgpu-kernel ABI is experimental
+//~^ ERROR is not a supported ABI