Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
convertToAnonymousObject
/
hasConcreateMember2.kt
blob: 1477b70bec0195316ead22b3b3061934fa9e2d09 [
file
]
// "Convert to anonymous object" "true"
interface
I0
{
fun x
()
{}
}
interface
I
:
I0
()
{
fun a
()
val b
:
Int
get
()
=
1
}
fun foo
(
i
:
I
)
{}
fun test
()
{
foo
(<
caret
>
I
{})
}