13 lines · cpp
1// RUN: %clang_cc1 -std=c++11 -emit-llvm -o - %s | FileCheck %s2// RUN: %clang_cc1 -std=c++14 -emit-llvm -o - %s | FileCheck %s3// RUN: %clang_cc1 -std=c++17 -emit-llvm -o - %s | FileCheck %s4 5// CHECK: struct.a6typedef struct { } a;7typedef struct {8 a b[];9} c;10 11// CHECK: {{(dso_local )?}}global %struct.c{{.*}}zeroinitializer12c d{ };13