Add test for exhaustive when with subject of Boolean! type
This commit is contained in:
committed by
teamcityserver
parent
09994ee8ea
commit
8a2e0cedf9
@@ -0,0 +1,21 @@
|
||||
// FIR_IDENTICAL
|
||||
// FILE: Provider.java
|
||||
|
||||
public class Provider {
|
||||
public static Boolean getCondition() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// FILE: main.kt
|
||||
|
||||
fun test_1(): Int = when (Provider.getCondition()) {
|
||||
true -> 1
|
||||
false -> 2
|
||||
}
|
||||
|
||||
fun test_2(): Int = when (Provider.getCondition()) {
|
||||
true -> 1
|
||||
false -> 2
|
||||
null -> 3
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package
|
||||
|
||||
public fun test_1(): kotlin.Int
|
||||
public fun test_2(): kotlin.Int
|
||||
|
||||
public open class Provider {
|
||||
public constructor Provider()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public open fun getCondition(): kotlin.Boolean!
|
||||
}
|
||||
Reference in New Issue
Block a user