summaryrefslogtreecommitdiffstats
path: root/src/test/ui/kinds-of-primitive-impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/kinds-of-primitive-impl.rs')
-rw-r--r--src/test/ui/kinds-of-primitive-impl.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/ui/kinds-of-primitive-impl.rs b/src/test/ui/kinds-of-primitive-impl.rs
new file mode 100644
index 000000000..6a067a9a3
--- /dev/null
+++ b/src/test/ui/kinds-of-primitive-impl.rs
@@ -0,0 +1,26 @@
+impl u8 {
+//~^ error: cannot define inherent `impl` for primitive types
+ pub const B: u8 = 0;
+}
+
+impl str {
+//~^ error: cannot define inherent `impl` for primitive types
+ fn foo() {}
+ fn bar(self) {}
+}
+
+impl char {
+//~^ error: cannot define inherent `impl` for primitive types
+ pub const B: u8 = 0;
+ pub const C: u8 = 0;
+ fn foo() {}
+ fn bar(self) {}
+}
+
+struct MyType;
+impl &MyType {
+//~^ error: cannot define inherent `impl` for primitive types
+ pub fn for_ref(self) {}
+}
+
+fn main() {}