/* $OpenBSD: test-22.c,v 1.1 2006/05/03 18:45:25 cloder Exp $ */ /* * Placed in the public domain by Chad Loder . * * Regression test for lint1 crash on expressions of the type: * * char *foo = { "literal" } */ /* ARGSUSED */ int main(int argc, char* argv[]) { const char *foo = { "bar" }; return 0; }