Local delegated properties moved to language feature option

This commit is contained in:
Mikhael Bogdanov
2016-05-30 12:39:19 +03:00
parent 2bd807bb4e
commit bdc0b6b308
8 changed files with 99 additions and 8 deletions
@@ -0,0 +1,11 @@
package
public fun foo(): kotlin.Int
public final class Delegate {
public constructor Delegate()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public final operator fun getValue(/*0*/ t: kotlin.Any?, /*1*/ p: kotlin.reflect.KProperty<*>): kotlin.Int
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}