Raw File
// RUN: %clang_cc1 -fsyntax-only -verify %s
int main() {
  char *s;
  s = (char []){"whatever"}; 
}
back to top