summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/if-constexpr.cpp
blob: 76f37f9221d83f4319f6061702e75098337941c1 (plain)
1
2
3
4
5
6
7
int foo()
{
        if constexpr (a == 0) {
                return 1;
        }
        return 0;
}