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