aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/neg/boundspropagation.scala (renamed from tests/pending/pos/boundspropagation.scala)0
-rw-r--r--tests/pending/pos/subtyping.scala12
-rw-r--r--tests/pending/pos/tailcall/t1672.scala10
-rw-r--r--tests/pending/pos/vararg-pattern.scala12
-rw-r--r--tests/pos-special/t2613.scala (renamed from tests/pending/pos/t2613.scala)0
-rw-r--r--tests/pos/t2795-new.scala (renamed from tests/pending/pos/t2795-new.scala)0
-rw-r--r--tests/pos/t2795-old.scala (renamed from tests/pending/pos/t2795-old.scala)0
-rw-r--r--tests/pos/t2945.scala (renamed from tests/pending/pos/t2945.scala)0
-rw-r--r--tests/pos/tailcall/t1672.scala (renamed from tests/pending/pos/t1672.scala)0
9 files changed, 0 insertions, 34 deletions
diff --git a/tests/pending/pos/boundspropagation.scala b/tests/neg/boundspropagation.scala
index 560d5416c..560d5416c 100644
--- a/tests/pending/pos/boundspropagation.scala
+++ b/tests/neg/boundspropagation.scala
diff --git a/tests/pending/pos/subtyping.scala b/tests/pending/pos/subtyping.scala
deleted file mode 100644
index 8a3c2eb03..000000000
--- a/tests/pending/pos/subtyping.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-object test {
-
- class B
- class C
-
- def tag[T](x: T): String & T = ???
-
- val x: Int & String = tag(0)
-
-}
-
-
diff --git a/tests/pending/pos/tailcall/t1672.scala b/tests/pending/pos/tailcall/t1672.scala
deleted file mode 100644
index 9be5c6066..000000000
--- a/tests/pending/pos/tailcall/t1672.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test1672 {
- @annotation.tailrec
- def bar(x: Int)(y: Int) : Nothing = {
- try {
- throw new RuntimeException
- } catch {
- case _: Throwable => bar(x)(y)
- }
- }
-}
diff --git a/tests/pending/pos/vararg-pattern.scala b/tests/pending/pos/vararg-pattern.scala
deleted file mode 100644
index 314d6460f..000000000
--- a/tests/pending/pos/vararg-pattern.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-object Test {
-
- List(1, 2, 3, 4) match {
- case List(1, 2, xs: _*) =>
- val ys: Seq[Int] = xs
- println(ys)
- }
- val List(1, 2, x: _*) = List(1, 2, 3, 4)
-
-}
-
-
diff --git a/tests/pending/pos/t2613.scala b/tests/pos-special/t2613.scala
index c234d4c0d..c234d4c0d 100644
--- a/tests/pending/pos/t2613.scala
+++ b/tests/pos-special/t2613.scala
diff --git a/tests/pending/pos/t2795-new.scala b/tests/pos/t2795-new.scala
index e307133e0..e307133e0 100644
--- a/tests/pending/pos/t2795-new.scala
+++ b/tests/pos/t2795-new.scala
diff --git a/tests/pending/pos/t2795-old.scala b/tests/pos/t2795-old.scala
index 935cb1f44..935cb1f44 100644
--- a/tests/pending/pos/t2795-old.scala
+++ b/tests/pos/t2795-old.scala
diff --git a/tests/pending/pos/t2945.scala b/tests/pos/t2945.scala
index 54f0a7724..54f0a7724 100644
--- a/tests/pending/pos/t2945.scala
+++ b/tests/pos/t2945.scala
diff --git a/tests/pending/pos/t1672.scala b/tests/pos/tailcall/t1672.scala
index 77a86db22..77a86db22 100644
--- a/tests/pending/pos/t1672.scala
+++ b/tests/pos/tailcall/t1672.scala