aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/dynamicObjectProperties.qml
blob: d4c77f143220235af5143b436aa5741816f73baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Test 1.0
import QtQuick 2.0
import QtQuick 2.0 as Qt47

QtObject {
    property QtObject objectProperty
    property QtObject objectProperty2
    objectProperty2: QtObject {}

    property MyComponent myComponentProperty
    property MyComponent myComponentProperty2
    myComponentProperty2: MyComponent {}
}