summaryrefslogtreecommitdiff
path: root/test/files/neg/t696a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t696a.scala')
-rw-r--r--test/files/neg/t696a.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/neg/t696a.scala b/test/files/neg/t696a.scala
new file mode 100644
index 0000000000..a06a32141a
--- /dev/null
+++ b/test/files/neg/t696a.scala
@@ -0,0 +1,6 @@
+object TypeUtil0 {
+ trait Type[+T];
+ implicit def WithType[S,T](implicit tpeS : Type[S], tpeT : Type[T]) : Type[S with T] = null
+ as[Any](null);
+ def as[T](x : Any)(implicit tpe : Type[T]) = null;
+}