Sign in
android
/
platform
/
external
/
javassist
/
HEAD
/
.
/
src
/
test
/
test5
/
BoolTest.java
blob: 0d9ca154c25c4804f4b97130742da7d5fb295ab5 [
file
] [
log
] [
blame
]
package
test5
;
public
class
BoolTest
{
static
boolean
i
=
false
;
public
boolean
test
()
{
return
i
;
}
public
boolean
foo
(
boolean
b
)
{
return
b
;
}
public
int
run
()
{
if
(
test
())
return
1
;
else
return
0
;
}
}