// "Make 'Foo' data class" "true" class Foo(private val bar: String, protected var baz: Int) { fun test() { var (bar, baz) = Foo("A", 1) } }