### Affected rules - `M0-1-2` ### Description Similar to `M0-1-1`, the infeasible path query needs to consider whether a path is infeasible in any template instantiation. ### Example ```cpp template <bool x> int foo() { if (x) { return 1; } return 0; } void test() { foo<true>(); foo<false>(); } ```