Add simple checker tests for scripts
This commit is contained in:
+26
@@ -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()
|
||||
Reference in New Issue
Block a user