Warning, /frameworks/kdeclarative/tests/test.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2011 Marco Martin <mart@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 import QtQuick 2.1
0008 
0009 Rectangle {
0010     width: 300
0011     height: 300
0012     color: "red"
0013 
0014     Text {
0015         anchors.fill: parent
0016         text: i18n("Hello")
0017     }
0018 }