aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativev4/data/subscriptionsInConditionalExpressions.qml
blob: 25483b207d7f924896d84d3ab79e79e30b73d25f (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0

Item {
    id: thisTest

    property bool cond: true
    property real a: 1
    property real result: cond ? a : a

    PropertyAction { running: true; target: thisTest; property: "a"; value: 2; }
}