e6b5cb5216
Update includes:
- Changing syntax of `OI/`NI` tags from `<!NI;TAG!>` to `<!TAG{NI}!>`
- Fix some incorrect directives
- Change order of diagnostics in some places
- Remove ignored diagnostics from FIR test data (previously `DIAGNOSTICS` didn't work)
- Update FIR dumps in some places and add `FIR_IDENTICAL` if needed
- Replace all JAVAC_SKIP with SKIP_JAVAC directive
136 lines
3.2 KiB
Kotlin
Vendored
136 lines
3.2 KiB
Kotlin
Vendored
// !LANGUAGE: -SafeCastCheckBoundSmartCasts -BooleanElvisBoundSmartCasts
|
|
// A set of examples for
|
|
// "If the result of a safe call is not null, understand that its receiver is not null"
|
|
// and some other improvements for nullability detection
|
|
|
|
fun kt6840_1(s: String?) {
|
|
val hash = s?.hashCode()
|
|
if (hash != null) {
|
|
<!DEBUG_INFO_SMARTCAST!>s<!>.length
|
|
}
|
|
}
|
|
|
|
fun kt6840_2(s: String?) {
|
|
if (s?.hashCode() != null) {
|
|
<!DEBUG_INFO_SMARTCAST!>s<!>.length
|
|
}
|
|
}
|
|
|
|
fun kt1635(s: String?) {
|
|
s?.hashCode()!!
|
|
<!DEBUG_INFO_SMARTCAST!>s<!>.hashCode()
|
|
}
|
|
|
|
fun kt2127() {
|
|
val s: String? = ""
|
|
if (s?.length != null) {
|
|
<!DEBUG_INFO_SMARTCAST!>s<!>.hashCode()
|
|
}
|
|
}
|
|
|
|
fun kt3356(s: String?): Int {
|
|
if (s?.length != 1) return 0
|
|
return <!DEBUG_INFO_SMARTCAST!>s<!>.length
|
|
}
|
|
|
|
open class SomeClass(val data: Any)
|
|
|
|
class SubClass(val extra: Any, data: Any) : SomeClass(data)
|
|
|
|
fun kt4565_1(a: SomeClass?) {
|
|
val data = a?.data
|
|
if (data != null) {
|
|
<!DEBUG_INFO_SMARTCAST!>data<!>.hashCode()
|
|
<!DEBUG_INFO_SMARTCAST!>a<!>.hashCode()
|
|
<!DEBUG_INFO_SMARTCAST!>a<!>.data.hashCode()
|
|
}
|
|
if (a?.data != null) {
|
|
// To be supported (?!)
|
|
data<!UNSAFE_CALL!>.<!>hashCode()
|
|
<!DEBUG_INFO_SMARTCAST!>a<!>.hashCode()
|
|
<!DEBUG_INFO_SMARTCAST!>a<!>.data.hashCode()
|
|
}
|
|
if (a?.data is String) {
|
|
<!DEBUG_INFO_SMARTCAST!>a<!>.data.<!UNRESOLVED_REFERENCE!>length<!>
|
|
data.<!UNRESOLVED_REFERENCE!>length<!>
|
|
}
|
|
}
|
|
|
|
fun kt4565_2(a: SomeClass?) {
|
|
// To be supported
|
|
if (a as? SubClass != null) {
|
|
a.<!UNRESOLVED_REFERENCE!>extra<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>hashCode<!>()
|
|
}
|
|
val extra = (a as? SubClass)?.extra
|
|
if (extra != null) {
|
|
a.<!UNRESOLVED_REFERENCE!>extra<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>hashCode<!>()
|
|
}
|
|
}
|
|
|
|
class A(val y: Int)
|
|
|
|
fun kt7491_1() {
|
|
val x: A? = A(42)
|
|
val <!UNUSED_VARIABLE!>z<!> = x?.y ?: return
|
|
<!DEBUG_INFO_SMARTCAST!>x<!>.y
|
|
}
|
|
|
|
fun getA(): A? = null
|
|
fun useA(a: A): Int = a.hashCode()
|
|
|
|
fun kt7491_2() {
|
|
val a = getA()
|
|
(a?.let { useA(<!DEBUG_INFO_SMARTCAST!>a<!>) } ?: a<!UNSAFE_CALL!>.<!>y ).toString()
|
|
}
|
|
|
|
fun String.correct() = true
|
|
|
|
fun kt8492(s: String?) {
|
|
if (s?.correct() ?: false) {
|
|
// To be supported
|
|
s<!UNSAFE_CALL!>.<!>length
|
|
}
|
|
}
|
|
|
|
fun kt11085(prop: String?) {
|
|
when (prop?.hashCode()) {
|
|
1 -> <!DEBUG_INFO_SMARTCAST!>prop<!>.length
|
|
}
|
|
}
|
|
|
|
class HttpExchange(val code: String)
|
|
|
|
fun kt11313(arg: HttpExchange?) {
|
|
when (arg?.code) {
|
|
"GET" -> handleGet(<!DEBUG_INFO_SMARTCAST!>arg<!>)
|
|
"POST" -> handlePost(<!DEBUG_INFO_SMARTCAST!>arg<!>)
|
|
}
|
|
}
|
|
|
|
fun handleGet(arg: HttpExchange) = arg
|
|
|
|
fun handlePost(arg: HttpExchange) = arg
|
|
|
|
class Wrapper {
|
|
fun unwrap(): String? = "Something not consistent"
|
|
}
|
|
|
|
fun falsePositive(w: Wrapper) {
|
|
if (w.unwrap() != null) {
|
|
// Here we should NOT have smart cast
|
|
<!SMARTCAST_IMPOSSIBLE!>w.unwrap()<!>.length
|
|
}
|
|
}
|
|
|
|
class Invokable(val x: String) {
|
|
operator fun invoke() = x
|
|
}
|
|
|
|
class InvokableProperty(val i: Invokable)
|
|
|
|
fun checkInvokable(ip: InvokableProperty?) {
|
|
if (ip?.<!UNSAFE_IMPLICIT_INVOKE_CALL!>i<!>() == "Hello") {
|
|
<!DEBUG_INFO_SMARTCAST!>ip<!>.hashCode()
|
|
}
|
|
}
|