aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlproperty/data/interfaceBinding2.qml
blob: e7c5dc7344e21a5912561290a13e5c97faadea5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import QtQuick 2.12
import io.qt.bugreports 2.0
Item {
    InterfaceConsumer2 {
        objectName: "a1"
        i: A2 {
            property int i: 42
        }
    }

    InterfaceConsumer2 {
        objectName: "a2"
        property A2 a: A2 {
            property int i: 43
        }
        i: a
    }

    InterfaceConsumer2 {
        objectName: "a3"
        property A2 a: A2 {
            id : aa
            property int i: 44
        }
        i: aa
    }
}