summaryrefslogtreecommitdiffstats
path: root/clang/test/Parser/compound_literal.c
blob: 00544996e3c1ac65cfdf09ce29b963e6b8b4a351 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fsyntax-only -verify %s
// RUN: %clang_cc1 -fsyntax-only -verify -x c++ %s
// expected-no-diagnostics
int main() {
  char *s;
  s = (char []){"whatever"};
  s = (char(*)){s};
}
OpenPOWER on IntegriCloud