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