aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/subscriptionsInConditionalExpressions.qml
blob: a8e05eeda14b99cd3536ef122442d62234ab20fc (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.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; }
}