aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/functionAsDefaultArgument.qml
blob: 9f576d1af8866aa3e67e3c4d0e2d580eb01862c2 (plain)
1
2
3
4
5
6
7
8
import QtQml 2.15

QtObject {
    id: root

    function f(inner=function(){ root.objectName = "didRun" } ){ inner() }
    Component.onCompleted: f()
}