We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
M0-1-2
Similar to M0-1-1, the infeasible path query needs to consider whether a path is infeasible in any template instantiation.
M0-1-1
template <bool x> int foo() { if (x) { return 1; } return 0; } void test() { foo<true>(); foo<false>(); }
Status