Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
override
/
ExtendFunctionClass.kt
blob: 3a48475ed9de7bb15852a8e599a29ee3f30479ab [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
package
extendFunctionClass
<!
ABSTRACT_MEMBER_NOT_IMPLEMENTED
!>
class
A
<!>
:
Function1
<
Int
,
Int
>
{
}
class
B
:
Function1
<
Int
,
Int
>
{
override
fun invoke
(
p1
:
Int
)
=
p1
}