aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/removeBindingsWithNoDependencies.qml
blob: aacf16474dd415437032be73da423744013e8dc9 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0
Item {
    property rect placement: Qt.rect(0, 0, 100, 100)

    function someFunction() { return 42; }

    property rect partialPlacement
    partialPlacement.x: someFunction()
}