aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/pluginQuick_anchorsUndefined.qml
blob: b6c0f59c7f9fea5485b126f13bc0919db35f6998 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick

Item {
    PluginQuickAnchorsBase {
        anchors.horizontalCenter: undefined
        anchors.verticalCenter: undefined
        anchors.baseline: undefined
        Component.onCompleted: anchors.bottom = undefined
    }
}