11 lines
209 B
Kotlin
Vendored
11 lines
209 B
Kotlin
Vendored
// test for KT-5337
|
|
package test
|
|
|
|
annotation class A(val value: String)
|
|
|
|
@A(<error descr="[NULL_FOR_NONNULL_TYPE] ">null</error>)
|
|
fun foo() {}
|
|
|
|
@A(<error descr="[NULL_FOR_NONNULL_TYPE] ">null</error>)
|
|
class B
|