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

Item {
    component Required : QtObject {
        property int x
        required x
    }
    Required { x: 5 }
}