aboutsummaryrefslogtreecommitdiff
path: root/tests/pending
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-08-25 14:27:12 +0200
committerMartin Odersky <odersky@gmail.com>2016-08-26 11:13:17 +0200
commit910aa4b4b6b1db98148566ca0b46e026fd5e312d (patch)
treeb03867bede3e68a3f1a00989f42d17da81d8747e /tests/pending
parent55ad7ebb5960ed7590610c777cce229f7241c0d3 (diff)
downloaddotty-910aa4b4b6b1db98148566ca0b46e026fd5e312d.tar.gz
dotty-910aa4b4b6b1db98148566ca0b46e026fd5e312d.tar.bz2
dotty-910aa4b4b6b1db98148566ca0b46e026fd5e312d.zip
More tests recategorized
Diffstat (limited to 'tests/pending')
-rw-r--r--tests/pending/pos/infersingle.flags1
-rw-r--r--tests/pending/pos/t8002-nested-scope.scala20
-rw-r--r--tests/pending/pos/t8111.scala24
-rw-r--r--tests/pending/pos/t8237b.scala10
-rw-r--r--tests/pending/pos/trait-force-info.flags1
5 files changed, 0 insertions, 56 deletions
diff --git a/tests/pending/pos/infersingle.flags b/tests/pending/pos/infersingle.flags
deleted file mode 100644
index e1b37447c..000000000
--- a/tests/pending/pos/infersingle.flags
+++ /dev/null
@@ -1 +0,0 @@
--Xexperimental \ No newline at end of file
diff --git a/tests/pending/pos/t8002-nested-scope.scala b/tests/pending/pos/t8002-nested-scope.scala
deleted file mode 100644
index a2088bce7..000000000
--- a/tests/pending/pos/t8002-nested-scope.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-// This test serves to capture the status quo, but should really
-// emit an accessibiltiy error.
-
-// `Namers#companionSymbolOf` seems too lenient, and currently doesn't
-// implement the same-scope checks mentioned:
-//
-// https://github.com/scala/scala/pull/2816#issuecomment-22555206
-//
-class C {
- def foo = {
- class C { private def x = 0 }
-
- {
- val a = 0
- object C {
- new C().x
- }
- }
- }
-}
diff --git a/tests/pending/pos/t8111.scala b/tests/pending/pos/t8111.scala
deleted file mode 100644
index 3f0e766ce..000000000
--- a/tests/pending/pos/t8111.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-trait T {
-
- def crashy(ma: Any): Unit = {
- // okay
- val f1 = (u: Unit) => ma
- foo(f1)()
- foo((u: Unit) => ma)
- foo(0, (u: Any) => ma) apply ()
-
- // crash due to side effects on the onwer of the symbol in the
- // qualifier or arguments of the application during an abandoned
- // names/defaults transform. The code type checkes because of
- // autp-tupling which promotes and empty parmater list to `(): Unit`
- foo((u: Any) => ma)()
-
- {{(u: Any) => ma}; this}.foo(0)()
-
- foo({def foo = ma; 0})()
-
- {def foo = ma; this}.foo(0)()
- }
-
- def foo(f: Any): Any => Any
-}
diff --git a/tests/pending/pos/t8237b.scala b/tests/pending/pos/t8237b.scala
deleted file mode 100644
index 52bb310e8..000000000
--- a/tests/pending/pos/t8237b.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-import scala.language.higherKinds
-import scala.reflect.runtime.universe._
-object Test {
-
- def fTt[A,E[X]<:List[X]](a: A)(implicit tt: TypeTag[E[A]]) = a
-
- trait TC[A]
- implicit def TCListInt[A]: TC[A] = ???
- fTt(1)
-}
diff --git a/tests/pending/pos/trait-force-info.flags b/tests/pending/pos/trait-force-info.flags
deleted file mode 100644
index eb4d19bcb..000000000
--- a/tests/pending/pos/trait-force-info.flags
+++ /dev/null
@@ -1 +0,0 @@
--optimise \ No newline at end of file