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

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

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