Add simple checker tests for scripts

This commit is contained in:
Pavel V. Talanov
2015-11-17 15:05:00 +03:00
parent daa1a08213
commit aebcebe8ca
6 changed files with 75 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
fun f() {
}
fun g() {
f()
}
val c = 1
1 + 2
val k = f()
3 + 5
g()
f()
class C {
fun f() {
}
}
val cc = C()
cc.f()