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