summaryrefslogtreecommitdiff
path: root/test/pending/run/t4098.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t4098.scala')
-rw-r--r--test/pending/run/t4098.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/pending/run/t4098.scala b/test/pending/run/t4098.scala
deleted file mode 100644
index b74ccf9bff..0000000000
--- a/test/pending/run/t4098.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-class A(a: Any) {
- def this() = { this(b) ; def b = new {} }
-}
-
-object Test {
- def main(args: Array[String]): Unit = {
- new A ("")
- }
-}