You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
273 B

#include <stdio.h>
#include "../sdk/UnknownFieldSDK.h"
static unsigned int gv = 0;
class C1 {
public:
C1() { gv = 1; }
};
class UnknownFieldProtection(C2) {
public:
C1 c;
unsigned int gv_ = gv;
};
int main() {
C2 c2;
printf("c2.gv=%d\n", c2.gv_);
return 0;
}