Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c35e97a8dc1b95945d4b0bc57de45a0550682bc
/
.
/
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
()
}