aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/singletonTest17.qml
blob: 7c7bffa4ac9ea12678966f502b4cebd971a4a627 (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 GPL-3.0-only

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;
}