8316953259
For diagnostics without any parameters, the given text is simply rendered as a String, so no symbols should be escaped. For diagnostics with parameters, the format in java.text.MessageFormat is used, so one single quote is erased and two single quotes become one single quote in the rendered text.
9 lines
152 B
Kotlin
Vendored
9 lines
152 B
Kotlin
Vendored
// "Make <set-prop> internal" "true"
|
|
// ERROR: Cannot assign to 'prop': the setter is private in file
|
|
|
|
package test
|
|
|
|
fun foo() {
|
|
<caret>prop = 20
|
|
}
|