aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmltypeloader/data/load_synchronous.qml
blob: 10e1784ff12f8543303389570d6a12273b8a5909 (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 WITH Qt-GPL-exception-1.0

import QtQml 2.2

QtObject {
    id: top

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