aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlls/utils/data/Type.qml
blob: 2d0a32cfb4e2a8642771e155ab2c55c9ce066f7a (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
28
29
30
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.15

BaseType {
    id: derived
    property int inTypeDotQml

    component MyInlineComponent: BaseType {
        id: derivedInIC
        property int inMyInlineComponent
    }

    property BaseType inlineType: BaseType {
         id: derivedInline
    }

    property MyInlineComponent icType: MyInlineComponent {
        id:derivedInIcInline
    }

    property var icType2: BaseType.MyBaseInlineComponent {
        id:derivedInIcInline2
    }

    property var nestedIcType: BaseType.MyNestedInlineComponent {
        id:derivedInIcInline3
    }
}