If-then-else statements & correct line numbers
#KT-3036 Fixed
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
fun foo() {
|
||||
if (0 < 1) {
|
||||
System.out?.println()
|
||||
} else {
|
||||
System.out?.println()
|
||||
}
|
||||
|
||||
val b = if (1 < 2) {
|
||||
System.out?.println()
|
||||
} else {
|
||||
System.out?.println()
|
||||
}
|
||||
}
|
||||
|
||||
// 2 3 5 8 9 11 8
|
||||
Reference in New Issue
Block a user