Files
kotlin-fork/compiler/testData/ir/irText/stubs/javaStaticMethod.txt
T
Dmitry Petrov e89047d2cc Generate super classes and overridden functions in proper scope
Such references require proper scope so that local symbols are bound.
Example:

```
fun <T> outer() {
    abstract class ALocal<S : T> {
        abstract fun bar()
    }

    class Local<S : T> : ALocal<S>() {
        override fun bar() {}
    }
}
```

Here local classes have type parameters with upper bounds depending on
function type parameters, and members overriding members in other local
classes.
2018-02-28 10:35:13 +03:00

6 lines
251 B
Plaintext
Vendored

FILE fqName:<root> fileName:/javaStaticMethod.kt
FUN name:test visibility:public modality:FINAL <> () returnType:Unit flags:
BLOCK_BODY
RETURN type=kotlin.Nothing from='test(): Unit'
CALL 'bar(): Unit' type=kotlin.Unit origin=null