aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/compound_literal.c
blob: 9a0e4a64a6547c64eb1020ac1d4764b306133ad7 (plain) (blame)
1
2
3
4
5
6
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
int main() {
  char *s;
  s = (char []){"whatever"}; 
}