summaryrefslogtreecommitdiffstats
path: root/test/Parser/compound_literal.c
blob: 4f3609dc29f4ebdfc7bd81774fbb6ec8ed9030ff (plain)
1
2
3
4
5
// RUN: %clang_cc1 -fsyntax-only -verify %s
int main() {
  char *s;
  s = (char []){"whatever"}; 
}