aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmltypeloader/data/load_synchronous.qml
blob: c22a880fbd62dab1e7d6fe9081d95c62f2e07d20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQml 2.2

QtObject {
    id: top

    Component.onCompleted: {
        Qt.createQmlObject('QtObject {}', top, 'nonprotocol:');
    }
}