aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlengine/data/nativeModuleImport.qml
blob: ffcb0e42ce34efe6e5e4b0fa8730488333402c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQml

import "info.mjs" as Info
import "nativeModuleImport.mjs" as Test

QtObject {
    property string a: Test.func()
    property string b: Test.getName()
    property string c: Info.name
    property string d: Test.name
    property string e: Test.foo
}