aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/singletonTest1.qml
blob: 2eb80df53ca668b6fe9050e380e5540078c016ef (plain)
1
2
3
4
5
6
7
import QtQuick 2.0
import "singleton"

Item {
    property int value1: SingletonType.testProp1;
    property string value2: "Test value: " + SingletonType.testProp3;
}