Replaced sure() invocations with '!!' operator in codegen tests.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
package demo_range
|
||||
|
||||
fun Int?.plus() : Int = this.sure().plus()
|
||||
fun Int?.dec() : Int = this.sure().dec()
|
||||
fun Int?.inc() : Int = this.sure().inc()
|
||||
fun Int?.minus() : Int = this.sure().minus()
|
||||
fun Int?.plus() : Int = this!!.plus()
|
||||
fun Int?.dec() : Int = this!!.dec()
|
||||
fun Int?.inc() : Int = this!!.inc()
|
||||
fun Int?.minus() : Int = this!!.minus()
|
||||
|
||||
fun box() : String {
|
||||
val x : Int? = 10
|
||||
|
||||
Reference in New Issue
Block a user