llvm-mirror/test/DebugInfo/2007-01-02-UnboundedArray.cpp
Jim Laskey 949413403e PR1068 - Unbounded array debug info.
llvm-svn: 32818
2007-01-02 11:53:52 +00:00

15 lines
207 B
C++

// 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;
}