summaryrefslogtreecommitdiff
path: root/test/files/run/groundtypetags_core.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-04-12 11:32:31 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-04-12 12:17:05 +0200
commit46d0d73f66111d5d31b9fd593972970d7e9056bb (patch)
tree8eed53751313f90fb27ea9c89133aa5414f6a847 /test/files/run/groundtypetags_core.scala
parent814cf34fb00f9ccb001249f4b3445ebc4f9942c9 (diff)
downloadscala-46d0d73f66111d5d31b9fd593972970d7e9056bb.tar.gz
scala-46d0d73f66111d5d31b9fd593972970d7e9056bb.tar.bz2
scala-46d0d73f66111d5d31b9fd593972970d7e9056bb.zip
GroundTypeTag => ConcreteTypeTag
Diffstat (limited to 'test/files/run/groundtypetags_core.scala')
-rw-r--r--test/files/run/groundtypetags_core.scala60
1 files changed, 30 insertions, 30 deletions
diff --git a/test/files/run/groundtypetags_core.scala b/test/files/run/groundtypetags_core.scala
index d779e3fc7e..8b81a0c795 100644
--- a/test/files/run/groundtypetags_core.scala
+++ b/test/files/run/groundtypetags_core.scala
@@ -1,32 +1,32 @@
object Test extends App {
- println(implicitly[GroundTypeTag[Byte]] eq GroundTypeTag.Byte)
- println(implicitly[GroundTypeTag[Byte]])
- println(implicitly[GroundTypeTag[Short]] eq GroundTypeTag.Short)
- println(implicitly[GroundTypeTag[Short]])
- println(implicitly[GroundTypeTag[Char]] eq GroundTypeTag.Char)
- println(implicitly[GroundTypeTag[Char]])
- println(implicitly[GroundTypeTag[Int]] eq GroundTypeTag.Int)
- println(implicitly[GroundTypeTag[Int]])
- println(implicitly[GroundTypeTag[Long]] eq GroundTypeTag.Long)
- println(implicitly[GroundTypeTag[Long]])
- println(implicitly[GroundTypeTag[Float]] eq GroundTypeTag.Float)
- println(implicitly[GroundTypeTag[Float]])
- println(implicitly[GroundTypeTag[Double]] eq GroundTypeTag.Double)
- println(implicitly[GroundTypeTag[Double]])
- println(implicitly[GroundTypeTag[Boolean]] eq GroundTypeTag.Boolean)
- println(implicitly[GroundTypeTag[Boolean]])
- println(implicitly[GroundTypeTag[Unit]] eq GroundTypeTag.Unit)
- println(implicitly[GroundTypeTag[Unit]])
- println(implicitly[GroundTypeTag[Any]] eq GroundTypeTag.Any)
- println(implicitly[GroundTypeTag[Any]])
- println(implicitly[GroundTypeTag[Object]] eq GroundTypeTag.Object)
- println(implicitly[GroundTypeTag[Object]])
- println(implicitly[GroundTypeTag[AnyVal]] eq GroundTypeTag.AnyVal)
- println(implicitly[GroundTypeTag[AnyVal]])
- println(implicitly[GroundTypeTag[AnyRef]] eq GroundTypeTag.AnyRef)
- println(implicitly[GroundTypeTag[AnyRef]])
- println(implicitly[GroundTypeTag[Null]] eq GroundTypeTag.Null)
- println(implicitly[GroundTypeTag[Null]])
- println(implicitly[GroundTypeTag[Nothing]] eq GroundTypeTag.Nothing)
- println(implicitly[GroundTypeTag[Nothing]])
+ println(implicitly[ConcreteTypeTag[Byte]] eq ConcreteTypeTag.Byte)
+ println(implicitly[ConcreteTypeTag[Byte]])
+ println(implicitly[ConcreteTypeTag[Short]] eq ConcreteTypeTag.Short)
+ println(implicitly[ConcreteTypeTag[Short]])
+ println(implicitly[ConcreteTypeTag[Char]] eq ConcreteTypeTag.Char)
+ println(implicitly[ConcreteTypeTag[Char]])
+ println(implicitly[ConcreteTypeTag[Int]] eq ConcreteTypeTag.Int)
+ println(implicitly[ConcreteTypeTag[Int]])
+ println(implicitly[ConcreteTypeTag[Long]] eq ConcreteTypeTag.Long)
+ println(implicitly[ConcreteTypeTag[Long]])
+ println(implicitly[ConcreteTypeTag[Float]] eq ConcreteTypeTag.Float)
+ println(implicitly[ConcreteTypeTag[Float]])
+ println(implicitly[ConcreteTypeTag[Double]] eq ConcreteTypeTag.Double)
+ println(implicitly[ConcreteTypeTag[Double]])
+ println(implicitly[ConcreteTypeTag[Boolean]] eq ConcreteTypeTag.Boolean)
+ println(implicitly[ConcreteTypeTag[Boolean]])
+ println(implicitly[ConcreteTypeTag[Unit]] eq ConcreteTypeTag.Unit)
+ println(implicitly[ConcreteTypeTag[Unit]])
+ println(implicitly[ConcreteTypeTag[Any]] eq ConcreteTypeTag.Any)
+ println(implicitly[ConcreteTypeTag[Any]])
+ println(implicitly[ConcreteTypeTag[Object]] eq ConcreteTypeTag.Object)
+ println(implicitly[ConcreteTypeTag[Object]])
+ println(implicitly[ConcreteTypeTag[AnyVal]] eq ConcreteTypeTag.AnyVal)
+ println(implicitly[ConcreteTypeTag[AnyVal]])
+ println(implicitly[ConcreteTypeTag[AnyRef]] eq ConcreteTypeTag.AnyRef)
+ println(implicitly[ConcreteTypeTag[AnyRef]])
+ println(implicitly[ConcreteTypeTag[Null]] eq ConcreteTypeTag.Null)
+ println(implicitly[ConcreteTypeTag[Null]])
+ println(implicitly[ConcreteTypeTag[Nothing]] eq ConcreteTypeTag.Nothing)
+ println(implicitly[ConcreteTypeTag[Nothing]])
} \ No newline at end of file