Added information about anonymous initializers to cfg & proper checks

This commit is contained in:
svtk
2011-11-01 18:54:33 +04:00
parent ecdceb4447
commit eab7fdf4bc
6 changed files with 109 additions and 9 deletions
@@ -0,0 +1,15 @@
class AnonymousInitializers() {
val k = 34
val i: Int
{
$i = 12
}
val j: Int
get() = 20
{
$i = 13
}
}