aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/propertySplicing.qml
blob: 53711db3f46c2b8c85e8d9e6bfce535d0fadba96 (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()
    }
}