blob: 9a0e4a64a6547c64eb1020ac1d4764b306133ad7 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbsc6e68da2012-10-19 12:44:48 +00002// expected-no-diagnostics
Steve Narofffbd09832007-07-19 01:06:55 +00003int main() {
4 char *s;
5 s = (char []){"whatever"};
6}