summaryrefslogtreecommitdiff
path: root/test/files/run/t6135.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6135.scala')
-rw-r--r--test/files/run/t6135.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/t6135.scala b/test/files/run/t6135.scala
new file mode 100644
index 0000000000..c0f8f3fd1d
--- /dev/null
+++ b/test/files/run/t6135.scala
@@ -0,0 +1,13 @@
+object Test extends App {
+ class A { class V }
+
+ abstract class B[S] {
+ def foo(t: S, a: A)(v: a.V)
+ }
+
+ val b1 = new B[String] {
+ def foo(t: String, a: A)(v: a.V) = () // Bridge method required here!
+ }
+
+ b1.foo("", null)(null)
+}