xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/2007-01-02-UnboundedArray.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // Make sure unbounded arrays compile with debug information.
2*f4a2713aSLionel Sambuc //
3*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm -g %s -o -
4*f4a2713aSLionel Sambuc 
5*f4a2713aSLionel Sambuc // PR1068
6*f4a2713aSLionel Sambuc 
7*f4a2713aSLionel Sambuc struct Object {
8*f4a2713aSLionel Sambuc   char buffer[];
9*f4a2713aSLionel Sambuc };
10*f4a2713aSLionel Sambuc 
main(int argc,char ** argv)11*f4a2713aSLionel Sambuc int main(int argc, char** argv) {
12*f4a2713aSLionel Sambuc   new Object;
13*f4a2713aSLionel Sambuc   return 0;
14*f4a2713aSLionel Sambuc }
15