Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
thisAndSuper
/
traitSuperCall.kt
blob: 381c2e010f21a56cafd0583bc84f1f0f9460787a [
file
]
// FIR_IDENTICAL
// FILE: test.kt
public
interface
Test
{
fun test
():
String
{
return
"123"
;
}
}
interface
KTrait
:
Test
{
fun ktest
()
{
super
.
test
()
test
()
}
}
class
A
:
KTrait
{
fun b
()
{
super
.
test
()
test
()
}
}