aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t3346a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/t3346a.scala')
-rw-r--r--tests/run/t3346a.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/run/t3346a.scala b/tests/run/t3346a.scala
new file mode 100644
index 000000000..dce126716
--- /dev/null
+++ b/tests/run/t3346a.scala
@@ -0,0 +1,11 @@
+import scala.language.implicitConversions
+
+object Test extends dotty.runtime.LegacyApp {
+ class Rep[T](x : T)
+
+ class SomeOps[T](x : Rep[T]) { def foo = 1 }
+ implicit def mkOps[X, T](x : X)(implicit conv: X => Rep[T]) : SomeOps[T] = new SomeOps(conv(x))
+
+ val a: Rep[Int] = new Rep(42)
+ println(a.foo)
+}