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