aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t115.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t115.scala')
-rw-r--r--tests/pos/t115.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/pos/t115.scala b/tests/pos/t115.scala
new file mode 100644
index 000000000..0e6a63c16
--- /dev/null
+++ b/tests/pos/t115.scala
@@ -0,0 +1,9 @@
+class S[A](f: A => A, x: A) {
+ Console.println(f(x));
+}
+class T[B](f: B => B, y: B) extends S((x: B) => f(x), y) {
+}
+object Test extends App {
+ new T[Int](x => x * 2, 1);
+ val f = new S((x: Int) => x, 1);
+}