Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
external
/
noExternalModifierInheritance.kt
blob: 198c07105741a06d5d91814b73ccab485a87bfa2 [
file
]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
open
class
A
{
open external fun foo
()
}
class
B
:
A
()
{
override
fun foo
()
{
super
.
foo
()
}
}
/* GENERATED_FIR_TAGS: classDeclaration, external, functionDeclaration, override, superExpression */