Disable some features when LV=1.1 API=1.0.
Feature list: - bound callable references - local delegated properties - coroutines. #KT-16017 Fixed
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
typealias Foo = Int
|
||||
|
||||
sealed class A
|
||||
data class B(val foo: Int): A()
|
||||
|
||||
inline val f get() = ""
|
||||
|
||||
suspend fun test() {
|
||||
""::class
|
||||
""::toString
|
||||
|
||||
Foo::class
|
||||
Foo::toString
|
||||
|
||||
val b by lazy { "" }
|
||||
}
|
||||
Reference in New Issue
Block a user