Add data modifier to a class quickfix #KT-18220 Fixed

This commit is contained in:
Toshiaki Kameyama
2017-09-19 03:19:05 +03:00
committed by Mikhail Glukhikh
parent f08e9832a6
commit 1043284afe
27 changed files with 409 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
// "Make 'Foo' data class" "true"
class Foo(private val bar: String, protected var baz: Int) {
class A {
fun test() {
var (bar, baz) = Foo("A", 1)<caret>
}
}
}