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, 0 insertions, 6 deletions
diff --git a/test/files/neg/t696a.scala b/test/files/neg/t696a.scala
deleted file mode 100644
index a06a32141a..0000000000
--- a/test/files/neg/t696a.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-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;
-}