summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/30130-if-constexpr.cpp
blob: 483317be7323a4da296c17470a7e6a214712fcd5 (plain)
1
2
3
4
5
6
7
8
int foo()
{
        if constexpr (a == 0)
        {
                return 1;
        }
        return 0;
}