aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/variantMapLookup.qml
blob: 7f5087993233395c37c43d3590ad9fd51d765ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pragma Strict
import TestTypes
import QtQuick

Item {
    VariantMapLookupFoo {
        id: moo
    }
    Component.onCompleted: {
        moo.data.value = 5
        moo.data["value"] = 6
    }
}