Add contract to checkNotNull overload without message

^KT-25303 Fixed
This commit is contained in:
Dmitry Savvinov
2018-07-26 13:32:29 +03:00
parent 952f67dafc
commit a81fc9e9bc
3 changed files with 15 additions and 4 deletions
@@ -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()
}