]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/FrontendC++/2005-02-13-BadDynamicInit.cpp
Update LLVM to r89205.
[FreeBSD/FreeBSD.git] / test / FrontendC++ / 2005-02-13-BadDynamicInit.cpp
1 // RUN: %llvmgxx %s -S -o - | not grep llvm.global_ctors
2 // This testcase corresponds to PR509
3 struct Data {
4   unsigned *data;
5   unsigned array[1];
6 };
7
8 Data shared_null = { shared_null.array };
9