qt6-bb10/qtdeclarative/tests/auto/qml/qmltc_qprocess/data/QmlBaseFromAnotherModule.qml

14 lines
301 B
QML

import QtQml
import QtQuick
import QtQuick.Controls.Basic
import QtQuick.Window
Item {
property ScrollBar myBar: ScrollBar {}
function f(a: ScrollBar): ScrollBar {}
// C++ defined QML types from other modules are fine
property Item myItem: Item {}
function g(a: Item): Item {}
}