aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/singletonTest13.qml
blob: 04c0471ad63e0b13244c543d1860364c208d5e72 (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0
import "singleton/subdir"

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