summaryrefslogtreecommitdiff
path: root/test/files/pos/nothing_manifest_disambig.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/nothing_manifest_disambig.scala')
-rw-r--r--test/files/pos/nothing_manifest_disambig.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/files/pos/nothing_manifest_disambig.scala b/test/files/pos/nothing_manifest_disambig.scala
deleted file mode 100644
index 076742033f..0000000000
--- a/test/files/pos/nothing_manifest_disambig.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test {
- def mani[T: Manifest](xs: T) = xs
- mani(List())
-
- def listElMani[T: Manifest](xs: List[T]) = xs
- listElMani(List())
-
- def foo[A, C](m : C)(implicit ev: C <:< Traversable[A], mani: Manifest[A]): (C, A, Manifest[A]) = (m, m.head, mani)
- foo(List(1,2,3))
-} \ No newline at end of file