Files
kotlin-fork/compiler/testData/ir/irText/declarations/contextReceivers/genericOuterClass.fir.kt.txt
T
Anastasiya Shadrina 3f50b675b1 [Tests] Add irText tests
2021-12-02 20:24:25 +03:00

26 lines
295 B
Plaintext
Vendored

class A<T : Any?> {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
class B<P : Any?> {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
fun Int.foo() {
A<Int>() /*~> Unit */
}
fun Collection<Int>.bar() {
B<Int>() /*~> Unit */
}