10 lines
75 B
C
10 lines
75 B
C
#pragma clang system_header
|
|
|
|
struct S {
|
|
~S(){}
|
|
};
|
|
|
|
void foo() {
|
|
S s;
|
|
}
|