[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / odr-use-lookahead.cpp
blob8ce3753c8cd71c43adc875ab2e4d14be65fa791b
1 // RUN: %clang_cc1 -emit-llvm-only %s
3 namespace PR43080 {
4 int f(int i) { return sizeof i<i; }
7 namespace PR42861 {
8 const unsigned long s = alignof(int);
9 void foo() { alignas(s) int j; }