10 lines · cpp
1// RUN: %clang_cc1 -std=c++03 -fsyntax-only %s2 3// Ensure that __has_cpp_attribute and argument parsing work in C++034 5#if !__has_cpp_attribute(nodiscard)6# error7#endif8 9[[gnu::assume_aligned(4)]] void* g() { return __nullptr; }10