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

Item {
    id: self

    QtObject {
        id: inner
    }

    property alias innerObj: inner
    property alias name: self.objectName
}