netbsd/external/bsd/llvm/dist/clang/test/Parser/compound_literal.c
2014-01-15 10:53:42 +01:00

7 lines
127 B
C

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
int main() {
char *s;
s = (char []){"whatever"};
}