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
9 lines
164 B
Kotlin
Vendored
9 lines
164 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DUMP_DEPENDENCIES
|
|
// FILE: javaSyntheticProperty.kt
|
|
val test = J().foo
|
|
|
|
// FILE: J.java
|
|
class J {
|
|
public String getFoo() { return null; }
|
|
} |