aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/propertySplicing.qml
blob: d079d5ce99e93c1499c0aa8a4e0784eb6499fa6b (plain)
1
2
3
4
5
6
7
8
9
10
import Qt.test 1.0
import QtQuick 2.0

MyDerivedObject {
    property bool test: false

    Component.onCompleted: {
        test = intProperty()
    }
}