17 lines
447 B
Java
17 lines
447 B
Java
package org.jetbrains.jet.codegen;
|
|
|
|
/**
|
|
* @author alex.tkachman
|
|
*/
|
|
public class FunctionGenTest extends CodegenTestCase {
|
|
public void testDefaultArgs() throws Exception {
|
|
blackBoxFile("functions/defaultargs.jet");
|
|
System.out.println(generateToText());
|
|
}
|
|
|
|
public void testNoThisNoClosure() throws Exception {
|
|
blackBoxFile("functions/nothisnoclosure.jet");
|
|
System.out.println(generateToText());
|
|
}
|
|
}
|