b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
16 lines
155 B
Plaintext
Vendored
16 lines
155 B
Plaintext
Vendored
class C {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
internal fun bar() {
|
|
}
|
|
|
|
}
|
|
|
|
inline fun C.foo() {
|
|
<this>.bar()
|
|
}
|