aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeincubator/data/nestedComponent.qml
blob: dd207074566e3df691640e080c5e2d99a5bf621a (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0
import "nestedComponent.js" as NestedJS

QtObject {
    property Component c: Component {
        QtObject {
            property int value: NestedJS.value
        }
    }
}