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

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

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

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