1 // RUN: %clang_cc1 -std=c++11 -emit-llvm -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -std=c++14 -emit-llvm -o - %s | FileCheck %s
3 // RUN: %clang_cc1 -std=c++17 -emit-llvm -o - %s | FileCheck %s
4 
5 // CHECK: struct.a
6 typedef struct { } a;
7 typedef struct {
8   a b[];
9 } c;
10 
11 // CHECK: {{(dso_local )?}}global %struct.c{{.*}}zeroinitializer
12 c d{ };
13