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