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