summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-56199.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-56199.rs')
-rw-r--r--src/test/ui/issues/issue-56199.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/issues/issue-56199.rs b/src/test/ui/issues/issue-56199.rs
deleted file mode 100644
index ba11582a9..000000000
--- a/src/test/ui/issues/issue-56199.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-enum Foo {}
-struct Bar {}
-
-impl Foo {
- fn foo() {
- let _ = Self;
- //~^ ERROR the `Self` constructor can only be used with tuple or unit structs
- let _ = Self();
- //~^ ERROR the `Self` constructor can only be used with tuple or unit structs
- }
-}
-
-impl Bar {
- fn bar() {
- let _ = Self;
- //~^ ERROR the `Self` constructor can only be used with tuple or unit structs
- let _ = Self();
- //~^ ERROR the `Self` constructor can only be used with tuple or unit structs
- }
-}
-
-fn main() {}