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

  foo();
}

function b() {
  function nested() {}

  bar();
}

}