brintos

brintos / llvm-project-archived public Read only

0
0
Text · 159 B · e6e7b79 Raw
9 lines · c
1// Serialization testing helper for noexcept, included by cg.cpp.2 3inline bool f1() {4  return noexcept(0);5}6inline bool f2() {7  return noexcept(throw 0);8}9