blob: 648d19be62b8cb1b6777e45834a7a0325c089d9d [file] [log] [blame]
// Make sure unbounded arrays compile with debug information.
//
// RUN: %llvmgcc -O0 -c -g %s
// PR1068
struct Object {
char buffer[];
};
int main(int argc, char** argv) {
new Object;
return 0;
}