Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
declarations
/
fakeOverrides.kt
blob: 388226153d72b173e67bf5cf5d3cd5f52f59ac7a [
file
]
// FIR_IDENTICAL
interface
IFooStr
{
fun foo
(
x
:
String
)
}
interface
IBar
{
val bar
:
Int
}
abstract
class
CFoo
<
T
>
{
fun foo
(
x
:
T
)
{}
}
class
Test1
:
CFoo
<
String
>(),
IFooStr
,
IBar
{
override
val bar
:
Int
=
42
}