Store refactoring
#KT-1213 Fixed
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class Shape(var result: String) {
|
||||
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
var a : Shape? = Shape("fail");
|
||||
a?.result = "OK";
|
||||
|
||||
return a!!.result
|
||||
}
|
||||
Reference in New Issue
Block a user