e89047d2cc
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.
6 lines
251 B
Plaintext
Vendored
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
|