7b9a00a7e6
This reverts commit 3ab96a3ed7
.
10 lines
175 B
Java
10 lines
175 B
Java
class NewStatement{
|
|
public NewStatement(Integer i){}
|
|
public NewStatement(String i){}
|
|
method() {
|
|
NewStatement n;
|
|
n = new NewStatement("hallo");
|
|
n = new NewStatement(1);
|
|
}
|
|
|
|
} |