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

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

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