summaryrefslogtreecommitdiff
path: root/test/files/run/t3452b-bcode/S_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3452b-bcode/S_1.scala')
-rw-r--r--test/files/run/t3452b-bcode/S_1.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/files/run/t3452b-bcode/S_1.scala b/test/files/run/t3452b-bcode/S_1.scala
deleted file mode 100644
index a209f12035..0000000000
--- a/test/files/run/t3452b-bcode/S_1.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-trait Search[M] {
- def search(input: M): C[Int] = {
- println("Search received: " + input)
- null
- }
-}
-
-class SearchC[M] {
- def searchC(input: M): C[Int] = {
- println("SearchC received: " + input)
- null
- }
-}
-
-object StringSearch extends SearchC[String] with Search[String]
-
-trait C[T]