mirror of
https://github.com/opnsense/src.git
synced 2026-03-22 02:40:09 -04:00
9 lines
181 B
C++
9 lines
181 B
C++
// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s
|
|
|
|
// CHECK: !DISubrange(count: -1)
|
|
|
|
struct StructName {
|
|
int member[];
|
|
};
|
|
|
|
struct StructName SN;
|