aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/RootWithoutId.qml
blob: 54bf5cf597093b2f53469a1723aa3e66f429ff1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2020 The Qt Company Ltd.

import QtQuick 2.15

Item {
     property bool foo: false

     property alias bar: item.visible

     Item {
         id: item
         visible: parent.foo
     }
}