qt6-bb10/qtdeclarative/tests/auto/qml/qqmlengine/data/crossReferencingSingletonsD.../Module/SingletonB.qml

12 lines
231 B
QML

pragma Singleton
import QtQuick
Item {
readonly property string name: "SingletonB"
readonly property TestItem itemB: TestItem{}
property TestItem crossRef: SingletonA.itemA
property int testItemInt: crossRef.i
}