aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlcomponent/data/requiredSetViaAliasAfterSameFile.qml
blob: 163616bc8ad4a17c7e833eb3d1526a1c7565d538 (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.14

Item {
    id: withAlias
    j: 42
    required property int i
    property alias j: withAlias.i
}