aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlls/utils/data/findUsages/inlineComponents/InlineComponentProvider.qml
blob: bfe8d990202f682dfefa8ea89f510f7fb0a5ae97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick

Item {
    component IC1: Item { property int inIc1: 123 }
    component IC2: Item { property IC1 inIc2 }

    IC1 {
        id: firstUsage
        property int inFirstUsage
    }
    IC2 {
        id: secondUsage
        property int inSecondUsage
    }
    Item {
        Item {
            IC1 {
                id: thirdUsage
                property int inThirdUsage
            }
        }
    }
}