aboutsummaryrefslogtreecommitdiff
path: root/tests/new
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-05-05 18:34:59 +0200
committerSamuel Gruetter <samuel.gruetter@epfl.ch>2014-05-20 13:38:48 +0200
commit82c4db686d07ae8e91f157f5c8b55a1a76917941 (patch)
tree3024867516bdc571987207296046fe5bcd3ca566 /tests/new
parent94ceb9895a539b05fd81c8abe040c276178b5507 (diff)
downloaddotty-82c4db686d07ae8e91f157f5c8b55a1a76917941.tar.gz
dotty-82c4db686d07ae8e91f157f5c8b55a1a76917941.tar.bz2
dotty-82c4db686d07ae8e91f157f5c8b55a1a76917941.zip
Pos tests t17xx - t19xx
Diffstat (limited to 'tests/new')
-rw-r--r--tests/new/t160.scala3
-rw-r--r--tests/new/t1642b.scala6
-rw-r--r--tests/new/t1659.scala4
-rw-r--r--tests/new/t1675.scala11
4 files changed, 0 insertions, 24 deletions
diff --git a/tests/new/t160.scala b/tests/new/t160.scala
deleted file mode 100644
index 91ac2ba84..000000000
--- a/tests/new/t160.scala
+++ /dev/null
@@ -1,3 +0,0 @@
-class Foo(s:String) {
- def this() = { this("DEFAULT") }
-}
diff --git a/tests/new/t1642b.scala b/tests/new/t1642b.scala
deleted file mode 100644
index 72e53b0c9..000000000
--- a/tests/new/t1642b.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-package x
-abstract class H[A] {
- type P <: R[P]
- def a: P
-}
-class R[F]
diff --git a/tests/new/t1659.scala b/tests/new/t1659.scala
deleted file mode 100644
index 10470d66f..000000000
--- a/tests/new/t1659.scala
+++ /dev/null
@@ -1,4 +0,0 @@
-trait Y { type X }
-trait W { def u[A](v : Y { type X = A }) : Unit }
-class Z extends W { def u[A](v : Y { type X = A }) = null }
-
diff --git a/tests/new/t1675.scala b/tests/new/t1675.scala
deleted file mode 100644
index 8630890ee..000000000
--- a/tests/new/t1675.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-package a
-object Foo extends pack.Bar {
- for(i <- 0 to 10) {
- test("")
- }
-}
-package pack {
- class Bar {
- protected def test(s: String*): Unit = {}
- }
-}