bolt/deps/llvm-18.1.8/clang/test/CodeGenCXX/odr-use-lookahead.cpp
2025-02-14 19:21:04 +01:00

10 lines
198 B
C++

// 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; }
}