summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-02-17 23:18:50 +0100
committerEugene Burmako <xeno.by@gmail.com>2014-02-18 09:23:38 +0100
commitafecfe90cd98a657ce83f3e833c940518563064e (patch)
tree23f0dd8d4a1a9aebf47f098c65c83746da4f0efc /test/files
parent34532d7e92b8ed2a9411260007fcfcc00f377ccc (diff)
downloadscala-afecfe90cd98a657ce83f3e833c940518563064e.tar.gz
scala-afecfe90cd98a657ce83f3e833c940518563064e.tar.bz2
scala-afecfe90cd98a657ce83f3e833c940518563064e.zip
reverses SI-6484
Unfortunately I have to revert b017629 because of SI-8303. There are projects (e.g. slick) that use typeOf in annotations, which effectively means bye-bye.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/reify_typeof.check10
-rw-r--r--test/files/run/reify_typeof.scala14
-rw-r--r--test/files/run/typetags_typeof_x.check8
-rw-r--r--test/files/run/typetags_typeof_x.scala14
4 files changed, 0 insertions, 46 deletions
diff --git a/test/files/run/reify_typeof.check b/test/files/run/reify_typeof.check
deleted file mode 100644
index 670f76faa4..0000000000
--- a/test/files/run/reify_typeof.check
+++ /dev/null
@@ -1,10 +0,0 @@
-Expr[Unit]({
- val ru = `package`.universe;
- val tpe1: ru.Type = ru.typeOf[`package`.List[Int]];
- Predef.println(tpe1);
- val tpe2: ru.Type = ru.typeOf(List.apply(1, 2, 3));
- Predef.println(tpe2)
-})
-scala.List[Int]
-List[Int]
-()
diff --git a/test/files/run/reify_typeof.scala b/test/files/run/reify_typeof.scala
deleted file mode 100644
index 985c57b9ab..0000000000
--- a/test/files/run/reify_typeof.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-object Test extends App {
- val reified = reify {
- val ru = scala.reflect.runtime.universe
- val tpe1: ru.Type = ru.typeOf[List[Int]]
- println(tpe1)
- val tpe2: ru.Type = ru.typeOf(List(1, 2, 3))
- println(tpe2)
- }
- println(reified)
- println(reified.eval)
-} \ No newline at end of file
diff --git a/test/files/run/typetags_typeof_x.check b/test/files/run/typetags_typeof_x.check
deleted file mode 100644
index 832a8bc63c..0000000000
--- a/test/files/run/typetags_typeof_x.check
+++ /dev/null
@@ -1,8 +0,0 @@
-List[T]
-C
-Int
-List[Any]
-AnyRef{def x: Int}
-Null
-Nothing
-Null
diff --git a/test/files/run/typetags_typeof_x.scala b/test/files/run/typetags_typeof_x.scala
deleted file mode 100644
index 08be6d4527..0000000000
--- a/test/files/run/typetags_typeof_x.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-import scala.reflect.runtime.universe._
-
-object Test extends App {
- def foo[T](x: T) = weakTypeOf(List(x))
- println(foo(2))
- locally { class C; println(weakTypeOf(new C)) }
-
- println(typeOf(2))
- println(typeOf(List(1, "1")))
- println(typeOf(new { def x = 2 }))
- println(typeOf[Null])
- println(typeOf[Nothing])
- println(typeOf(null))
-} \ No newline at end of file