New testcase
[oota-llvm.git] / test / CFrontend / 2003-10-02-UnionLValueError.c
1 union U{
2   int i[8];
3   char s[80];
4 };
5
6 void format_message(char *buffer, union U *u) {
7   sprintf(buffer, u->s);
8 }
9