aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/singletonTest17.qml
blob: 4a987e31c061eb332d853e7beafb3aaf669db2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2013 BlackBerry Limited. All rights reserved.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick 2.0
import org.qtproject.Test 1.0

Item {
    id: test

    property int value1: RegisteredSingleton.testProp1;
    property string value2: "Test value: " + RegisteredSingleton.testProp3;
}