DEBSOURCES
Skip Quicknav
sources / qt6-declarative / 6.9.1%2Bdfsg-1 / tests / auto / qml / qmllint / data / missingComponentBehaviorBound.qml
12345678910
import QtQuick Item { id: barsty property int fooInt: 42 Repeater { model: 5 Text { text: "Foo=" + barsty.fooInt } } }