07ff53d456
otherwise I have to rollback dozens of files after using sed that follows conventions
10 lines
240 B
Plaintext
10 lines
240 B
Plaintext
// KT-557 Wrong type inference near sure extension function
|
|
|
|
fun Array<String>.length() : Int {
|
|
return 0;
|
|
}
|
|
|
|
fun test(array : Array<String?>?) {
|
|
array<!UNNECESSARY_SAFE_CALL!>?.<!>sure<Array<String?>>()<!UNSAFE_CALL!>.<!>length()
|
|
}
|