aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t7690.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t7690.scala')
-rw-r--r--tests/untried/pos/t7690.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/untried/pos/t7690.scala b/tests/untried/pos/t7690.scala
new file mode 100644
index 000000000..4d88c3348
--- /dev/null
+++ b/tests/untried/pos/t7690.scala
@@ -0,0 +1,17 @@
+object A
+trait B[T]
+
+object C {
+ implicit def notUsed[L[x]](in: L[Int]): B[L[Int]] = ???
+
+ class E(val ls: Int) {
+ def x(f: Int => Boolean): Boolean = f(ls)
+ }
+ implicit def isUsed(ls: Int): E = new E(ls)
+
+ def amethod(in: Int): Boolean =
+ in.x { i =>
+ import A._
+ "asdf" == i.toString
+ }
+}