summaryrefslogtreecommitdiff
path: root/test/files/pos/t2669.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t2669.scala')
-rw-r--r--test/files/pos/t2669.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t2669.scala b/test/files/pos/t2669.scala
index 72e931178c..e34f08f0f5 100644
--- a/test/files/pos/t2669.scala
+++ b/test/files/pos/t2669.scala
@@ -23,6 +23,6 @@ import java.util.Vector
// scalac cannot detect lack of type params, but then throws AssertionError later:
class TVector2639 {
- val b = new Vector // this line passed without error detected
+ val b = new Vector // this line passed without error detected
val a = new Vector(1) // this line caused throwing AssertionError when scalac
}