Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
765a8bdd7c832e71172795c934da59c2a2d7ffe9
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
jvmDefaultNonDefaultInheritanceSuperCall
/
source.kt
blob: 6adbcab38734812db50a4a3eb5f98b5a608fe6de [
file
] [
log
] [
blame
]
import
base
.*
interface
KotlinInterface
:
UExpression
{
override
fun evaluate
():
Any
?
{
return
super
.
evaluate
()
}
}
class
KotlinClass
:
UExpression
{
override
fun evaluate
():
Any
?
{
return
super
.
evaluate
()
}
}