Skip to content

Commit 4c92bf1

Browse files
committed
Update error markers
1 parent dce826f commit 4c92bf1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/neg/i1643.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
trait T extends Array { // error
1+
trait T extends Array { // error // error
22
def t1(as: String*): Array[String] = { varargs1(as: _*) } // error
33
def t2(as: String*): Array[String] = { super.varargs1(as: _*) } // error
44
}

tests/neg/parser-stability-16.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class x0[x0] {
22
val x1 : x0
33
}
4-
trait x3 extends x0 {
4+
trait x3 extends x0 { // error
55
x1 = 0 object // error // error

tests/neg/parser-stability-7.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class x0[x1] {
22
def x2: x1
33
}
4-
trait x3 extends x0 {
4+
trait x3 extends x0 { // error
55
class x2
66
var x2 = 0 // error
77
var x4 = x5 x2 // error

0 commit comments

Comments
 (0)