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

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