Sign in
fuchsia
/
third_party
/
rust
/
ddb8551e03a1310a841da05b0418b49fd6287482
/
.
/
tests
/
run-make
/
issue-36710
/
foo.cpp
blob: 8f878c2c2727a7f85f8d2640432d5d9f1f319c30 [
file
] [
log
] [
blame
]
#include
<stdint.h>
struct
A
{
A
()
{
v
=
1234
;
}
~
A
()
{
v
=
1
;
}
uint32_t
v
;
};
A a
;
extern
"C"
{
uint32_t
get
()
{
return
a
.
v
;
}
}