aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/instanceof_qtqml.qml
blob: d74b172cf87373d8bcf130b51f5a1132c6989cd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQml 2.0

QtObject {
    id: qtobjectInstance

    property Timer aTimer: Timer {
        id: timerInstance
    }

    property Connections aConnections: Connections {
        id: connectionsInstance
    }
}