bolt/deps/llvm-18.1.8/clang/test/Parser/compound_literal.c
2025-02-14 19:21:04 +01:00

8 lines
201 B
C

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