summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/cpp/i1165.cpp
blob: c3123b596fbb2aafc433fd2c99204d0ddb7e22d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <functional>

int main()
{
    typedef std::function<void ()> C;
    C callback =
        [] ()
        {
            C f([]()
            {
                int i;
            });
        };
}