aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t949.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t949.scala')
-rw-r--r--tests/pending/run/t949.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/run/t949.scala b/tests/pending/run/t949.scala
deleted file mode 100644
index 9363f60c6..000000000
--- a/tests/pending/run/t949.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
-
- private def f = new T { val state = State.A }
-
- private object State extends Enumeration {
- val A, B = Value
- }
-
- f
-}
-
-trait T {
-}
-