Sign in
android
/
platform
/
external
/
javassist
/
HEAD
/
.
/
src
/
test
/
test1
/
ExprEdit5.java
blob: 931f4c71ce03991569350f289af2cf93552b20c5 [
file
] [
log
] [
blame
]
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
;
}
}