aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/customParserTypeInIC.qml
blob: a29d87caa04e35aa127cecd166119f154251d95d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.15

Item {
    property int count: myModel.count
    component MyModel : ListModel {
        ListElement { a: 10 }
        ListElement { a: 12 }
    }

    MyModel {
        id: myModel
    }
}