summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/scriptScope.1.qml
blob: 9b11fa9ed9e2ad4551369f17f7e8fb6b913898b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt.test 1.0

MyQmlObject {
    property string result

    Script{
        function f() {
            result = b
        }
        
    }
    onArgumentSignal: f()
}