Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
addDataModifier
/
test5.kt.after
blob: b3761069e0a9d6c0981dc4c3d307ad55dc85d63c [
file
] [
log
] [
blame
]
// "Make 'Foo' data class" "true"
data
class
Foo
(
private
val bar
:
String
,
protected
var
baz
:
Int
)
{
fun test
()
{
var
(
bar
,
baz
)
=
Foo
(
"A"
,
1
)
}
}