diff --git a/tests/auto/qml/codemodel/check/properties.qml b/tests/auto/qml/codemodel/check/properties.qml new file mode 100644 index 00000000000..5d2b0a68820 --- /dev/null +++ b/tests/auto/qml/codemodel/check/properties.qml @@ -0,0 +1,10 @@ +import QtQuick 1.0 + +Item { + property int width: 200 + property int height: 200 + property string name + property color someColor + property Rectangle someRectangle + default property list foo +}