When removing a function from the function set and adding it to deferred, we
[llvm.git] / test / FrontendC++ / 2007-01-02-UnboundedArray.cpp
blob310308694b78b5176397e931920236f42ac55380
1 // Make sure unbounded arrays compile with debug information.
2 //
3 // RUN: %llvmgcc -O0 -S -g %s
5 // PR1068
7 struct Object {
8 char buffer[];
9 };
11 int main(int argc, char** argv) {
12 new Object;
13 return 0;