aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/parentIsComponent.qml
blob: a74bf9e4e8c03666fa08b87c01775f5f6ef8f0bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Item {
    Component {
        id: foo
        Item {
            property real yyy: parent.progress
            Component.onCompleted: console.log(yyy)
        }
    }

    property var stuff: foo.createObject()
}