Hack that adds more convenient defaults for J2K, minimal test for these defaults

This commit is contained in:
Pavel V. Talanov
2013-10-29 20:02:25 +04:00
parent a649eb52cf
commit e19373cac7
9 changed files with 109 additions and 15 deletions
@@ -0,0 +1,10 @@
class Example {
void main(Integer param1, int param2) {
Library.getString().isEmpty();
Integer i = 10;
for (Integer a : Arrays.asList(1, 2, 3)) {
}
}
}
@@ -0,0 +1,9 @@
open class Example() {
open fun main(param1 : Int, param2 : Int) : Unit {
Library.getString().isEmpty()
val i = 10
for (a in Arrays.asList(1, 2, 3))
{
}
}
}