blob: 639423f5d0991d12de29c6730ae6e45e6ef9ba16 [file] [log] [blame]
// "Remove initializer from property" "true"
package a
public fun <T> emptyList(): List<T> = null!!
class M {
interface A {
abstract val l: List<Int><caret>
}
}