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

        foo();
    }

    function b() {
        function nested() {
        }

        bar();
    }

}