aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/nestedFunctions.formatted.qml
blob: 522e844201bdfc0e8dadc1246e905aaf390cccb8 (plain)
1
2
3
4
5
6
7
8
9
10
Item {
    function a() {
        function nested() {}
        foo();
    }
    function b() {
        function nested() {}
        bar();
    }
}