summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-enum-byref-self.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-enum-byref-self.rs')
-rw-r--r--src/test/ui/consts/const-enum-byref-self.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/consts/const-enum-byref-self.rs b/src/test/ui/consts/const-enum-byref-self.rs
deleted file mode 100644
index b7e14bfb7..000000000
--- a/src/test/ui/consts/const-enum-byref-self.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// run-pass
-#![allow(dead_code)]
-
-enum E { V, VV(isize) }
-static C: E = E::V;
-
-impl E {
- pub fn method(&self) {
- match *self {
- E::V => {}
- E::VV(..) => panic!()
- }
- }
-}
-
-pub fn main() {
- C.method()
-}