Files
kotlin/compiler/testData/asJava/lightClasses/nullabilityAnnotations/ClassWithConstructorAndProperties.kt

7 lines
140 B
Kotlin
Vendored

// ClassWithConstructorAndProperties
class ClassWithConstructorAndProperties(
val nullable: String?,
val notNull: String
)