aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlengine/data/crossReferencingSingletonsDeletion/Module/SingletonA.qml
blob: dc3bfd23fd8096e9fc1a0446c9c1d98da7dc7ae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
pragma Singleton
import QtQuick

Item {
    readonly property string name: "SingletonA"

    readonly property TestItem itemA: TestItem{}

    property TestItem crossRef: SingletonB.itemB
    property int testItemInt: crossRef.i
}