Sign in
android
/
platform
/
external
/
javassist
/
HEAD
/
.
/
src
/
test
/
test1
/
LocalVars.java
blob: a3d14d7a0fc5df0451c55fe894214f3b29d788c2 [
file
] [
log
] [
blame
]
package
test1
;
public
class
LocalVars
{
public
int
poi
(
String
str
)
{
Object
obj
=
str
;
int
hash
=
obj
.
hashCode
();
return
hash
;
}
public
int
foo
(
int
i
)
{
int
j
=
3
;
if
(
i
==
0
)
{
String
s
=
"zero"
;
j
+=
s
.
length
();
}
return
j
+
3
;
}
}