blob: 931f4c71ce03991569350f289af2cf93552b20c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package test1;
public class ExprEdit5 {
int value;
public ExprEdit5() { value = 0; }
public ExprEdit5(String s) { value = 1; }
public int k1() {
ExprEdit5 e = new ExprEdit5();
return e.value;
}
}
|