mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
10 lines
157 B
C
10 lines
157 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
struct foo {
|
|
unsigned int I:1;
|
|
unsigned char J[1];
|
|
unsigned int K:1;
|
|
};
|
|
|
|
void test(struct foo *X) {}
|
|
|