aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/fromBoolValue.qml
blob: cbd4b2f6df4467775bbfe98f3dd231e26eb47acc (plain)
1
2
3
4
5
6
7
8
9
10
pragma Strict
import QtQuick 6

Item {
    property bool a: !x
    width: !(parent && state) ? 100 : 0

    property font f
    property bool b: !(parent || f)
}