Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
override
/
intersectionOverrideWithProtectedAbstract.kt
blob: e819653e85adbdac75b566cec9f6cb05c4f527a4 [
file
]
// FIR_IDENTICAL
public
abstract
class
A
{
protected
abstract
fun bar
():
String
}
public
interface
B
{
public
fun bar
():
String
}
public
abstract
class
C
:
A
(),
B