summaryrefslogtreecommitdiff
path: root/tests/auto/qml/qmlformat/data/nestedFunctions.formatted.qml
blob: 5536ecf513bac66424ecc84f32db20d6e8492ce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
Item {
    function a() {
        function nested() {}
        foo();
    }

    function b() {
        function nested() {}
        bar();
    }
}