aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/test4refine.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/test4refine.scala')
-rw-r--r--tests/untried/pos/test4refine.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/untried/pos/test4refine.scala b/tests/untried/pos/test4refine.scala
index 671096293..abf078193 100644
--- a/tests/untried/pos/test4refine.scala
+++ b/tests/untried/pos/test4refine.scala
@@ -18,7 +18,7 @@ trait S extends o.I {
abstract class O() {
type X;
abstract trait I {
- type Y;
+ type Y;
def foo(x: X, y: Y): E = e;
}
val i:I { type Y = E } = null;