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