aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t6664b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t6664b.scala')
-rw-r--r--tests/pending/pos/t6664b.scala5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/pending/pos/t6664b.scala b/tests/pending/pos/t6664b.scala
deleted file mode 100644
index a62286683..000000000
--- a/tests/pending/pos/t6664b.scala
+++ /dev/null
@@ -1,5 +0,0 @@
-object T {
- def A(s: String): A = new A(3, s)
- def A(i: Int): A = A(i, "abc")
- case class A(i: Int, s: String)
-}