55ff519aa8
Now add annotation to primary constructor should work correctly, and may be some other related cases too. Related to KT-25548
6 lines
133 B
Plaintext
Vendored
6 lines
133 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for val a" "true"
|
|
|
|
fun foo() {
|
|
@Suppress("REDUNDANT_NULLABLE") val a: String?<caret>? = null
|
|
}
|