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