1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00
llvm-mirror/test/FrontendC/2007-04-17-ZeroSizeBitFields.c

5 lines
90 B
C
Raw Normal View History

// PR 1332
// RUN: %llvmgcc %s -S -o /dev/null
2007-04-17 22:29:12 +02:00
struct Z { int a:1; int :0; int c:1; } z;