aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/alias.16.qml
blob: 4637aec58fac3baf148eba0ebea49e6dd59f246d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0
import QtQuick.Window 2.0

Window {
    visible: true

    property alias list: repeater.model

    list: ["A", "B", "C"]

    Repeater {
        id: repeater
    }
}