mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
11 lines
282 B
C
11 lines
282 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
// This caused generation of the following type name:
|
|
// %Array = uninitialized global [10 x %complex int]
|
|
//
|
|
// which caused problems because of the space int the complex int type
|
|
//
|
|
|
|
struct { int X, Y; } Array[10];
|
|
|
|
void foo() {}
|