aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeanimations/data/transitionAssignmentBug.qml
blob: 508693e0fcf520ea656d64305abef371672e5bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Rectangle {
    width: 400
    height: 400

    property bool nullObject
    Component.onCompleted: nullObject = transitions.length > 0 && transitions[0] === null

    property list<Transition> myTransitions: [Transition {}, Transition {}]
    transitions: myTransitions
}