blob: 0723f4b5664f1f789834ff325072ae9f9ee6c2f0 [file] [log] [blame]
#include <stdio.h>
/* Static and global vars are inited to zero, non-static local vars aren't. */
int g;
static int gs;
int main(void)
{
int l;
static int ls;
if (gs == 0xCAFEBABE) printf("1!\n");
if (g == 0xCAFEBABE) printf("2!\n");
if (ls == 0xCAFEBABE) printf("3!\n");
if (l == 0xCAFEBABE) printf("4!\n"); // complains
return 0;
}