[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / static-local-union.c
blob289eae0184f1a68ac25c75b483017f76c599b75b
1 // RUN: %clang_cc1 -emit-llvm < %s
3 int a(void) {static union{int a;} r[2] = {1,2};return r[1].a;}