mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
13 lines
174 B
C++
13 lines
174 B
C++
|
|
// RUN: %clang -emit-llvm -g -S %s -o - | grep HdrSize
|
||
|
|
struct A {
|
||
|
|
int one;
|
||
|
|
static const int HdrSize = 52;
|
||
|
|
int two;
|
||
|
|
A() {
|
||
|
|
int x = 1;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
int main() {
|
||
|
|
A a;
|
||
|
|
}
|