Clang Project

clang_source_code/test/CodeGen/2007-05-16-EmptyStruct.c
1// PR 1417
2// RUN: %clang_cc1   %s -emit-llvm -o - | FileCheck %s
3
4// CHECK: global %struct.anon* null
5struct { } *X;
6