Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
convertToAnonymousObject
/
parameter.kt.after
blob: c069e4354751a2cf6f76663f73cccecf5d922a99 [
file
]
// "Convert to anonymous object" "true"
interface
I
{
fun foo
(
a
:
String
,
b
:
Int
):
Int
}
fun test
()
{
object
:
I
{
override
fun foo
(
a
:
String
,
b
:
Int
):
Int
{
return
1
}
}
}