5 lines
81 B
Plaintext
Vendored
5 lines
81 B
Plaintext
Vendored
// "Add non-null asserted (!!) call" "true"
|
|
fun foo(a: Int?) {
|
|
a!!.plus(1)
|
|
}
|