mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
12 lines
174 B
C++
12 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;
|
|
}
|