- Synopsis
template <class T, T...> constexpr auto operator""_test; template <class T, T...> constexpr auto operator""_test_disabled;
int main() {
"should always be true"_test = [] {
EXPECT_TRUE(true);
};
"should not be run"_test_disabled = [] {
EXPECT_TRUE(false);
};
}