forked from JavaTX/JavaCompilerCore
15 lines
244 B
Plaintext
15 lines
244 B
Plaintext
|
import java.util.Vector;
|
||
|
|
||
|
class UninitializedVariable{
|
||
|
|
||
|
Integer method(Integer v) {
|
||
|
return v;
|
||
|
}
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
UninitializedVariable ol;
|
||
|
ol = new UninitializedVariable();
|
||
|
Integer v;
|
||
|
ol.method(v);
|
||
|
}
|
||
|
}
|