aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/contextObjectOnLazyBindings.qml
blob: 33b21c74a83cf238d26de3c0e454d48b2491d4ad (plain)
1
2
3
4
5
6
7
8
9
10
import QtQml 2.0
QtObject {
    property SubObject subObject: SubObject {
        subValue: 20;
        property int someExpression: {
            return someValue;
        }
    }
    property int someValue: 42
}