aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i2219.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/i2219.scala')
-rw-r--r--tests/pos/i2219.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/pos/i2219.scala b/tests/pos/i2219.scala
new file mode 100644
index 000000000..7f786eb3e
--- /dev/null
+++ b/tests/pos/i2219.scala
@@ -0,0 +1,7 @@
+object Test {
+ type Inv[T[_]] = T[_]
+
+ class Hi[T[_]](x: Inv[T]) {
+ def foo[T[_]](value: Inv[T] = x) = {}
+ }
+}