Scratch: report errors at the correct line
^KT-24364 Fixed
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
foo.forEach { // ERROR: Unresolved reference: foo; Cannot choose among the following candidates wi...
|
||||
1 + 1
|
||||
}
|
||||
|
||||
fun goo(a: String) { // ERROR: Unresolved reference: goo
|
||||
super.goo(a)
|
||||
}
|
||||
@@ -1,3 +1,7 @@
|
||||
foo.forEach {
|
||||
1 + 1
|
||||
}
|
||||
|
||||
fun goo(a: String) {
|
||||
super.goo(a)
|
||||
}
|
||||
@@ -1,3 +1,7 @@
|
||||
foo.forEach { // ERROR: error: unresolved reference: foo
|
||||
1 + 1
|
||||
}
|
||||
|
||||
fun goo(a: String) { // ERROR: error: unresolved reference: goo
|
||||
super.goo(a)
|
||||
}
|
||||
Reference in New Issue
Block a user