Check absence of explicit initializer in field annotation

This commit is contained in:
Nikolay Krasko
2012-10-08 20:39:12 +04:00
parent 3a410064be
commit d0b41ff153
6 changed files with 54 additions and 6 deletions
@@ -0,0 +1,7 @@
package test
import java.util.*
public open class WrongFieldInitializer : Object() {
public var foo : String? = ""
}