aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i2218.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/i2218.scala')
-rw-r--r--tests/pos/i2218.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/pos/i2218.scala b/tests/pos/i2218.scala
new file mode 100644
index 000000000..fbede8b9b
--- /dev/null
+++ b/tests/pos/i2218.scala
@@ -0,0 +1,9 @@
+trait Rule[In]
+
+class C {
+ def ruleWithName[In](f: In => Int): Rule[In] = {
+ new DefaultRule(f) {}
+ }
+
+ class DefaultRule[In](f: In => Int) extends Rule[In]
+}