Files
kotlin-fork/j2k/tests/testData/ast/issues/kt-828.ide.kt
T
Pavel Talanov 8577d3ca55 Converter:
Preserve white spaces inside code blocks
Introduce WhiteSpaceSeparatedElementList which keeps track of whitespaces
Introduce StatementList
Change old test data accordingly
2013-12-22 16:49:43 +04:00

15 lines
392 B
Kotlin

class Test() {
fun test() {
val res = true
res = res and false
res = res or false
res = res xor false
System.out.println(true and false)
System.out.println(true or false)
System.out.println(true xor false)
System.out.println(!true)
System.out.println(true && false)
System.out.println(true || false)
}
}