aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/alias.3.qml
blob: 16a6d9d9031ca48f64b22bec4a9d5c2f46ad2bd0 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

QtObject {
   property variant other
   other: Alias { id: myAliasObject }

   property alias value: myAliasObject.aliasValue
   property alias value2: myAliasObject.value
}