summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-09-27 16:12:50 -0700
committerEugene Burmako <xeno.by@gmail.com>2012-09-28 14:22:05 +0200
commitb5b614444cefe84861b06a09fbaf10d100556556 (patch)
tree1b7b0e8f8410daa2cd41b76257d09e97ad4a0958 /test
parenta6b81ac12a45866e97d30133c12dee775b93ea39 (diff)
downloadscala-b5b614444cefe84861b06a09fbaf10d100556556.tar.gz
scala-b5b614444cefe84861b06a09fbaf10d100556556.tar.bz2
scala-b5b614444cefe84861b06a09fbaf10d100556556.zip
Implementations of isValueType and isNonValueType.
Restrictions regarding how non-value types can be used have generally not been enforced explicitly, depending instead on the fact that the compiler wouldn't attempt to use them in strange ways like offering a method type as a type argument. Since users can now create most types from scratch, it has become important to enforce the restrictions in a more direct fashion. This was a lot harder than it probably should have been because there are so many types which go unmentioned by the specification. Hopefully a useful exercise in any case.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/fail-non-value-types.check2
-rw-r--r--test/files/run/fail-non-value-types.scala30
-rw-r--r--test/files/run/macro-reify-type/Macros_1.scala2
3 files changed, 33 insertions, 1 deletions
diff --git a/test/files/run/fail-non-value-types.check b/test/files/run/fail-non-value-types.check
new file mode 100644
index 0000000000..1c2d7dcf1b
--- /dev/null
+++ b/test/files/run/fail-non-value-types.check
@@ -0,0 +1,2 @@
+[B, That](f: A => B)(implicit cbf: ImaginaryCanBuildFrom[CompletelyIndependentList.this.Repr,B,That])That
+()CompletelyIndependentList[A]
diff --git a/test/files/run/fail-non-value-types.scala b/test/files/run/fail-non-value-types.scala
new file mode 100644
index 0000000000..d9aa5c01ca
--- /dev/null
+++ b/test/files/run/fail-non-value-types.scala
@@ -0,0 +1,30 @@
+import scala.reflect.runtime.universe._
+
+class ImaginaryCanBuildFrom[-From, -Elem, +To]
+class CompletelyIndependentList[+A] {
+ type Repr <: CompletelyIndependentList[A]
+ def map[B, That](f: A => B)(implicit cbf: ImaginaryCanBuildFrom[Repr, B, That]): That = ???
+ def distinct(): CompletelyIndependentList[A] = ???
+}
+
+object Test {
+ var failed = false
+ def expectFailure[T](body: => T): Boolean = {
+ try { val res = body ; failed = true ; println(res + " failed to fail.") ; false }
+ catch { case _: AssertionError => true }
+ }
+
+ /** Attempt to use a method type as a type argument - expect failure. */
+ def tcon[T: TypeTag](args: Type*) = appliedType(typeOf[T].typeConstructor, args.toList)
+
+ val map = typeOf[CompletelyIndependentList[Int]].member("map": TermName).typeSignature
+ val distinct = typeOf[CompletelyIndependentList[Int]].member("distinct": TermName).typeSignature
+
+ def main(args: Array[String]): Unit = {
+ expectFailure(println(tcon[CompletelyIndependentList[Int]](map)))
+ expectFailure(tcon[CompletelyIndependentList[Int]](distinct))
+ println(map)
+ println(distinct)
+ if (failed) sys.exit(1)
+ }
+}
diff --git a/test/files/run/macro-reify-type/Macros_1.scala b/test/files/run/macro-reify-type/Macros_1.scala
index aeec9fc97c..06de05735d 100644
--- a/test/files/run/macro-reify-type/Macros_1.scala
+++ b/test/files/run/macro-reify-type/Macros_1.scala
@@ -17,7 +17,7 @@ object StaticReflect {
case NoSymbol => c.error(c.enclosingPosition, s"No member called $nameName in $clazz.") ; reify(ru.NoType)
case member =>
val mtpe = member typeSignatureIn clazz
- val mtag = c.reifyType(c.runtimeUniverse, Select(c.runtimeUniverse, newTermName("rootMirror")), mtpe)
+ val mtag = c.reifyType(treeBuild.mkRuntimeUniverseRef, Select(treeBuild.mkRuntimeUniverseRef, newTermName("rootMirror")), mtpe)
val mtree = Select(mtag, newTermName("tpe"))
c.Expr[ru.Type](mtree)