aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/t2208.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/t2208.scala')
-rw-r--r--tests/untried/neg/t2208.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/untried/neg/t2208.scala b/tests/untried/neg/t2208.scala
index 53165cc81..b86b1d9b3 100644
--- a/tests/untried/neg/t2208.scala
+++ b/tests/untried/neg/t2208.scala
@@ -1,8 +1,8 @@
object Test {
- class A
+ class A
- class B[X]
- type Alias[X <: A] = B[X]
+ class B[X]
+ type Alias[X <: A] = B[X]
- class C extends Alias[Any] // not ok, normalisation should check bounds before expanding Alias
+ class C extends Alias[Any] // not ok, normalisation should check bounds before expanding Alias
}