mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-02 18:41:57 +00:00
16 lines
162 B
C++
16 lines
162 B
C++
#include <stdint.h>
|
|
|
|
struct A {
|
|
A() { v = 1234; }
|
|
~A() { v = 1; }
|
|
uint32_t v;
|
|
};
|
|
|
|
A a;
|
|
|
|
extern "C" {
|
|
uint32_t get() {
|
|
return a.v;
|
|
}
|
|
}
|