Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
native
/
override.kt
blob: b8a427d734a11a379304691c48a9f7150079f80b [
file
]
// FIR_IDENTICAL
import
kotlin
.
jvm
.*
interface
Base
{
fun foo
()
}
class
Derived
:
Base
{
override
external fun foo
()
}