aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmldom/domdata/domitem/inlineComponents.qml
blob: 5ae0af4eb1bd09f6dcb609991005dd8337f11381 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick

Item {
    id: mainComponent

    component IC1: Item { property string firstIC }
    component IC2: Item { property string secondIC }

    Item {
        Item {
            Item {
                component IC3: Item { property string thirdIC }
            }
        }
    }

}