Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/Simple.B.kt
T
Alexander Udalov a2e453b759 Refactor CompileKotlinAgainstKotlinTest
CKAKTest is now abstract, the actual testcases are generated via GenerateTests
into CompileKotlinAgainstKotlinTestGenerated.

Also invokeMain() now invokes namespace.main instead of bbb.namespace.main.
2013-01-09 15:32:51 +04:00

7 lines
109 B
Kotlin

fun main(args: Array<String>) {
val h = aaa.hello()
if (h != 17) {
throw Exception()
}
}