Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
implement
/
interface.kt.after
blob: 35952ab527f74615753ae37ed441e587f54b7984 [
file
]
// "Implement interface" "true"
// WITH_RUNTIME
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
interface
Base
{
fun foo
(
x
:
Int
):
Int
fun bar
(
y
:
String
)
=
y
}
class
BaseImpl
:
Base
{
override
fun foo
(
x
:
Int
):
Int
{
TODO
(
"Not yet implemented"
)
}
}