QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickanimations / data / transitionAssignmentBug.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 400
5     height: 400
6
7     property bool nullObject
8     Component.onCompleted: nullObject = transitions.length > 0 && transitions[0] === null
9
10     property list<Transition> myTransitions: [Transition {}, Transition {}]
11     transitions: myTransitions
12 }