1 // RUN: %clang_cc1 -emit-llvm-only %s 2 3 namespace PR43080 { f(int i)4 int f(int i) { return sizeof i<i; } 5 } 6 7 namespace PR42861 { 8 const unsigned long s = alignof(int); foo()9 void foo() { alignas(s) int j; } 10 } 11