Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
addDataModifier
/
test1.kt
blob: c42253debfb18651372734447a0e9afdf1160caa [
file
]
// "Make 'Foo' data class" "true"
class
Foo
(
val bar
:
String
,
var
baz
:
Int
)
fun test
()
{
var
(
bar
,
baz
)
=
Foo
(
"A"
,
1
)<
caret
>
}