mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
14 lines
207 B
C++
14 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;
|
|
}
|