Add contract to checkNotNull overload without message
^KT-25303 Fixed
This commit is contained in:
+7
-2
@@ -22,7 +22,12 @@ fun testCheckWithFailingMessage(x: Any?) {
|
||||
<!DEBUG_INFO_SMARTCAST!>x<!>.length
|
||||
}
|
||||
|
||||
fun tesCheckNotNullWithMessage(x: Int?) {
|
||||
checkNotNull(x) { "x is null!"}
|
||||
fun testCheckNotNullWithMessage(x: Int?) {
|
||||
checkNotNull(x) { "x is null!" }
|
||||
<!DEBUG_INFO_SMARTCAST!>x<!>.inc()
|
||||
}
|
||||
|
||||
fun testCheckNotNull(x: Int?) {
|
||||
checkNotNull(x)
|
||||
<!DEBUG_INFO_SMARTCAST!>x<!>.inc()
|
||||
}
|
||||
+2
-1
@@ -1,6 +1,7 @@
|
||||
package
|
||||
|
||||
public fun tesCheckNotNullWithMessage(/*0*/ x: kotlin.Int?): kotlin.Unit
|
||||
public fun testCheckNotNull(/*0*/ x: kotlin.Int?): kotlin.Unit
|
||||
public fun testCheckNotNullWithMessage(/*0*/ x: kotlin.Int?): kotlin.Unit
|
||||
public fun testCheckSmartcast(/*0*/ x: kotlin.Any?): kotlin.Unit
|
||||
public fun testCheckUnreachableCode(): kotlin.Unit
|
||||
public fun testCheckWithFailingMessage(/*0*/ x: kotlin.Any?): kotlin.Unit
|
||||
|
||||
Reference in New Issue
Block a user