7bfad12e6a
#KT-35476 fixed
11 lines
179 B
Kotlin
Vendored
11 lines
179 B
Kotlin
Vendored
object J {
|
|
@JvmStatic
|
|
fun main(args: Array<String>) {
|
|
val a = false
|
|
val b = true
|
|
var c = false
|
|
c = c and (a || b)
|
|
print(c)
|
|
}
|
|
}
|