Files
kotlin-fork/idea/testData/fir/multiModule/basicWithJavaFakeOverride/jvm/simpleFakeOverride.kt
T
Mikhail Glukhikh f8e165dbe4 Integrate nullability into cone types, add & use FIR flexible type
FIR fake overrides are rendered now more precisely to test this process
2019-02-19 09:54:32 +03:00

10 lines
81 B
Kotlin
Vendored

class Some
class B : A<Some>() {
fun test() {
foo(Some())
}
}