forked from JavaTX/JavaCompilerCore
8 lines
147 B
Java
Executable File
8 lines
147 B
Java
Executable File
|
|
public class TestConstructorNegative {
|
|
|
|
/*should throw error*/
|
|
public TestConstructorNegative(java.lang.Integer a, String b) {
|
|
return a;
|
|
}
|
|
} |