summaryrefslogtreecommitdiff
path: root/test/files/pos/gadt-gilles.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/gadt-gilles.scala')
-rw-r--r--test/files/pos/gadt-gilles.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/gadt-gilles.scala b/test/files/pos/gadt-gilles.scala
index 309168c1e0..662be9017d 100644
--- a/test/files/pos/gadt-gilles.scala
+++ b/test/files/pos/gadt-gilles.scala
@@ -6,7 +6,7 @@ object Test {
val x: A[C with D] = new B[C, D] {}
val y: A[C with D] = x match { case b: B[u, v] => (new B[u, v] {}): A[u with v] } // OK
-
+
def f[T, U](p: A[T with U]): A[T with U] = p match { case b: B[u, v] => new A[u with v] {} } // Not OK
}