Add test methods and data base on raw fir builder test data
This commit is contained in:
committed by
Mikhail Glukhikh
parent
fd8205e317
commit
8047aa22a4
@@ -0,0 +1,10 @@
|
||||
// orFourtyTwo.arg: Int?
|
||||
// │ fun ?: (Int?, Int): Int
|
||||
// │ │ Int
|
||||
// │ │ │
|
||||
fun orFourtyTwo(arg: Int?) = arg ?: 42
|
||||
|
||||
// bang.arg: Int?
|
||||
// │ fun !! (Int?): Int
|
||||
// │ │
|
||||
fun bang(arg: Int?) = arg!!
|
||||
Reference in New Issue
Block a user