Files
kotlin/compiler/testData/loadJava/compiledJava/constructor/ConstructorGenericUpperBound.fir.txt
Mikhail Glukhikh 092d10b1a8 FIR Java: fix creation & handling of type parameter symbols
Before this commit, we created type parameter symbols each time
when type parameter was referenced or created.
In this commit, we introduced class-bound Java type parameter stack
and use it to find referenced type parameter symbol.
So now they are created only when Java type parameter is created
2019-04-30 18:45:47 +03:00

5 lines
184 B
Plaintext
Vendored

public open class ConstructorGenericUpperBound : R|java/lang/Object| {
public constructor<P : R|java/util/RandomAccess|>(p: R|ft<P, P?>|!): R|test/ConstructorGenericUpperBound|
}