struct m {
	int a:15;
	int b;
};

int main()
{
	struct m n;
	n.b = n.a = 0;
	if (n.b)
		return 1;
	return 0;
}
