aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmldelegatemodel/data/abstractItemModel.qml
blob: a61e94ea6dad13cd8f97b68d76116fc3da7caec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQml.Models 2.15
import QtQuick 2.15

import Test 1.0

DelegateModel {
    model: AbstractItemModel {}
    delegate: Item {}
}