aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/inlineComponent.qml
blob: ce6998a98089b5d29502a8864ac409c7374d4c31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    component IC : QtObject {}
    QtObject {
        component IC2: QtObject {}

        property IC ic: IC {}
        property IC2 ic2: IC2 {}
    }

    property IC ic : IC {}
    property IC2 ic2: IC2 {}
}