65ea4e184a
- Add utilities to add new attribute to ConeAttributes
- Get rid of FlexibleNullability attribute (it can be easily inferred
for any flexible type at any moment)
- Fix determining of EnhancedNullability attribute
13 lines
405 B
Plaintext
Vendored
13 lines
405 B
Plaintext
Vendored
FILE: jvm.kt
|
|
public final class User : R|AnnotatedDerived| {
|
|
public constructor(): R|User| {
|
|
super<R|AnnotatedDerived|>()
|
|
}
|
|
|
|
public final fun test(): R|kotlin/Unit| {
|
|
lval x: R|kotlin/String| = this@R|/User|.R|/AnnotatedDerived.foo|(String(123))
|
|
lval y: R|kotlin/String| = this@R|/User|.R|/AnnotatedDerived.foo|(Null(null))
|
|
}
|
|
|
|
}
|