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

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

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