/* Minimal compiler test for C compiler.

 Semantic mistakes like these are common enough that any compiler should produce warnings
 like those in the comments if it is to be used for more than "hello, world".
*/

int
main (void)
{
  static union u0
  {
    int i[2];
    short s[1];
    char c[1];
  } u00 =
  {
    {
  0}};                          /* warning: braces around scalar initializer */

  return 0;
}
