qtdeclarative/tests/auto/qml/qqmlconnections/data/test-connection-implicit.qml

10 lines
127 B
QML

import QtQuick 2.0
Item {
width: 50
property bool tested: false
Connections { onWidthChanged: tested = true }
}