summaryrefslogtreecommitdiff
path: root/test/files/run/t3452b/S_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3452b/S_1.scala')
-rw-r--r--test/files/run/t3452b/S_1.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/files/run/t3452b/S_1.scala b/test/files/run/t3452b/S_1.scala
new file mode 100644
index 0000000000..a209f12035
--- /dev/null
+++ b/test/files/run/t3452b/S_1.scala
@@ -0,0 +1,17 @@
+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]