qtdeclarative/tests/auto/qml/qmlcppcodegen/data/fromBoolValue.qml

11 lines
162 B
QML

pragma Strict
import QtQuick 6
Item {
property bool a: !x
width: !(parent && state) ? 100 : 0
property font f
property bool b: !(parent || f)
}