Sign in
android
/
platform
/
external
/
stg
/
HEAD
/
.
/
test_cases
/
info_tests
/
function
/
static_method.cc
blob: 5fc1b21773a493b2c4e6b8cd4f005df87cb7fd8d [
file
] [
log
] [
blame
]
struct
Foo
{
static
int
bar
;
static
int
baz
();
int
m
;
};
int
Foo
::
baz
()
{
return
bar
;
}
Foo
foo
;
int
Foo
::
bar
;