blob: f590e8fb8922b785ae646bd64092d2ec801b6e45 [file] [log] [blame]
#include <stdio.h>
struct T {
unsigned X : 5;
unsigned Y : 6;
unsigned Z : 5;
};
struct T GV = { 1, 5, 1 };
int main() {
printf("%d %d %d\n", GV.X, GV.Y, GV.Z);
}