]> git.proxmox.com Git - rustc.git/blob - tests/run-make/issue-36710/foo.cpp
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / run-make / issue-36710 / foo.cpp
1 #include <stdint.h>
2
3 struct A {
4 A() { v = 1234; }
5 ~A() { v = 1; }
6 uint32_t v;
7 };
8
9 A a;
10
11 extern "C" {
12 uint32_t get() {
13 return a.v;
14 }
15 }