blob: 8ce3753c8cd71c43adc875ab2e4d14be65fa791b [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm-only %s
namespace PR43080 {
int f(int i) { return sizeof i<i; }
}
namespace PR42861 {
const unsigned long s = alignof(int);
void foo() { alignas(s) int j; }
}