aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/singletonTest16.qml
blob: ea8b3a2ebab75bad327e2badf132da4b64a403da (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0
import "singleton"
import "singleton/js/jspragma.js" as JsPragmaTest

Item {
    id: test

    property int value1: SingletonType.testProp1;
    property string value2: "Test value: " + JsPragmaTest.value;
}