blob: e627c45782537bdad0c9c4834afa95eb4fc50e1f [file] [log] [blame]
import QtQuick 2.4
Item {
property bool behaviorTriggered
property bool someProperty
ItemWithInnerBehavior {
//the existence of this property triggers the bug
property bool iDoAbsolutelyNothing
Component.onCompleted: parent.someProperty = true
someValue: parent.someProperty
}
}