aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/nestedFunctions.formatted.qml
blob: fc1915f647edc5a0fbf69c5a99f5423cf47c1119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Item {
    function a() {
        function nested() {}

        foo();
    }

    function b() {
        function nested() {}

        bar();
    }
}