[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
fun testAssignment() {
|
||||
var a = 1
|
||||
a = todo()
|
||||
}
|
||||
|
||||
fun testVariableDeclaration() {
|
||||
val a = todo()
|
||||
}
|
||||
|
||||
fun testPlusAssign() {
|
||||
operator fun Int.plusAssign(i: Int) {}
|
||||
|
||||
var a = 1
|
||||
a += todo()
|
||||
}
|
||||
|
||||
|
||||
fun todo(): Nothing = throw Exception()
|
||||
Reference in New Issue
Block a user