summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/alias.3.qml
blob: 7e5559a7b312329f90be57fd89e6ff3a735413e4 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

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

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