aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/data/neighbors_context.qml
blob: 98540525574690dc10a4733d50da6a73ce6445be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick
Item {
    id: root

    QtObject {
        id: child1
        property int p: 41
        property int p2: child2.count * 2
    }

    LocallyImported_context {
        id: child2
        property int p: child1.p + 1
    }
}