summaryrefslogtreecommitdiff
path: root/test/files/pos/t9542.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t9542.scala')
-rw-r--r--test/files/pos/t9542.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/pos/t9542.scala b/test/files/pos/t9542.scala
new file mode 100644
index 0000000000..d65f7ac4c6
--- /dev/null
+++ b/test/files/pos/t9542.scala
@@ -0,0 +1,8 @@
+object O {
+ trait T
+
+ class VC(val self: Any) extends AnyVal {
+ def extMethod(f: F1[T, Any]) = ()
+ }
+}
+trait F1[A, B]