17 lines
156 B
Plaintext
Vendored
17 lines
156 B
Plaintext
Vendored
class C {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
internal fun bar() {
|
|
}
|
|
|
|
}
|
|
|
|
inline fun C.foo() {
|
|
<this>.bar()
|
|
}
|
|
|