aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/withStatement.1.qml
blob: 28f0c084517680787062060f7f383e5a573f685a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt.test 1.0

MyQmlObject {
    property var other: MyQmlObject {
        intProperty: 123

        function go() {
            return intProperty;
        }
    }

    value: with(other) go()
}