6 lines
98 B
C
6 lines
98 B
C
// RUN: clang-cc -fsyntax-only -verify %s
|
|
int main() {
|
|
char *s;
|
|
s = (char []){"whatever"};
|
|
}
|