aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t5012.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t5012.scala')
-rw-r--r--tests/untried/pos/t5012.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/untried/pos/t5012.scala b/tests/untried/pos/t5012.scala
deleted file mode 100644
index 772b8f448..000000000
--- a/tests/untried/pos/t5012.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-class D {
- object p // (program point 1)
-}
-
-class C {
- def m: D = {
- if("abc".length == 0) {
- object p // (program point 2)
- }
- null
- }
-}