xref: /minix3/external/bsd/llvm/dist/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/ser.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // Serialization testing helper for noexcept, included by cg.cpp.
2 
f1()3 inline bool f1() {
4   return noexcept(0);
5 }
f2()6 inline bool f2() {
7   return noexcept(throw 0);
8 }
9