aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/assignFunctionThroughAliasToVarProperty.qml
blob: 96b55af9d45fec116289894fb80ca5718e3ed51e (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.15

Item {
  id: root
  property alias bar: root.foo
  property var foo: function() { return false }

  Component.onCompleted: root.bar = function() { return true }
}