aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlengine/data/crossReferencingSingletonsDeletion/Module/SingletonB.qml
blob: 7f0335ee891f903f6c9bf361379305c2e53cfcea (plain)
1
2
3
4
5
6
7
8
9
10
11
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
}