about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0200.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/error-codes/E0200.rs')
-rw-r--r--tests/ui/error-codes/E0200.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0200.rs b/tests/ui/error-codes/E0200.rs
new file mode 100644
index 00000000000..24806a6cbb0
--- /dev/null
+++ b/tests/ui/error-codes/E0200.rs
@@ -0,0 +1,8 @@
+struct Foo;
+
+unsafe trait Bar { }
+
+impl Bar for Foo { } //~ ERROR E0200
+
+fn main() {
+}