mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
16 lines
169 B
C
16 lines
169 B
C
// RUN: %clang_cc1 %s -emit-llvm -o -
|
|
|
|
|
|
enum {
|
|
tA = 0,
|
|
tB = 1
|
|
};
|
|
|
|
struct MyStruct {
|
|
unsigned long A;
|
|
void * B;
|
|
};
|
|
|
|
void bar(){
|
|
struct MyStruct MS = { tB, 0 };
|
|
}
|