Sign in
android
/
platform
/
external
/
javassist
/
HEAD
/
.
/
src
/
test
/
test2
/
RemoveCall.java
blob: 909ef37734665a3b7e468bb1d43a7fb6498ae02f [
file
] [
log
] [
blame
]
package
test2
;
public
class
RemoveCall
{
int
k
=
0
;
public
int
bar
()
throws
Exception
{
foo
(
3
);
return
k
;
}
public
void
foo
(
int
k
)
throws
Exception
{
k
=
1
;
}
}