Added init keyword to testdata

This commit is contained in:
Stanislav Erokhin
2015-04-01 05:21:26 +03:00
parent 6ab83c9b8c
commit b152211096
88 changed files with 114 additions and 114 deletions
@@ -1,6 +1,6 @@
class Foo {
{Foo.test()}
init {Foo.test()}
companion object {
private fun test() {
@@ -1,6 +1,6 @@
class Foo {
{Foo.test}
init {Foo.test}
companion object {
private val test = "String"
@@ -1,6 +1,6 @@
class Foo {
{Foo.test}
init {Foo.test}
companion object {
private var test = "String"