Fixed tests after adding error checking for intention tests.
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
fun doSomething<T>(a: T) {}
|
||||
|
||||
fun foo() {
|
||||
val a = true
|
||||
val b = false
|
||||
if (a) {
|
||||
if (b) {
|
||||
println("test")
|
||||
doSomething("test")
|
||||
} else {
|
||||
println("test2")
|
||||
doSomething("test2")
|
||||
}
|
||||
} else {
|
||||
println("test2")
|
||||
doSomething("test2")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user