blob: cff8a72d9acb15bf74b00b52c311a0bacc764232 [file] [log] [blame]
import QtQml 2.0
QtObject {
id: root
property bool targetProperty: true
property QtObject foo: QtObject {
id: otherSubObject
property alias theAlias: root.targetProperty
}
property QtObject referencingSubObject: QtObject {
property alias success: otherSubObject.theAlias
}
}