mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
7 lines
148 B
Kotlin
Vendored
7 lines
148 B
Kotlin
Vendored
// "Make 'Foo' data class" "true"
|
|
class Foo(val bar: String, var baz: Int)
|
|
|
|
fun test() {
|
|
val foo = Foo("A", 1)
|
|
var (bar, baz) = foo<caret>
|
|
} |