Files
kotlin/compiler/testData/loadJava/compiledKotlin/nested/membersReferenceOuterTP.kt
Stanislav Erokhin 42857992ed Minor. Add ALLOW_AST_ACCESS to two tests.
We suppose, that AST access is allowed if we have property with initializer.
2016-06-09 12:57:47 +03:00

13 lines
228 B
Kotlin
Vendored

//ALLOW_AST_ACCESS
package test
class MembersReferenceOuterTP<P> {
inner class Inner {
fun <Q : P> f() {}
fun g(p: P): P = null!!
val v: P = null!!
val <Q : P> Q.w: Q get() = null!!
}
}