mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 16:40:59 -04:00
7 lines
127 B
C
7 lines
127 B
C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
int main() {
|
|
char *s;
|
|
s = (char []){"whatever"};
|
|
}
|