aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/QmltcTests/qtbug123476.qml
blob: 79aa178de4923fb7c504b00e01a9dde74fe8a46e (plain)
1
2
3
4
5
6
7
8
9
import QtQuick

Item {
    // qmltc should see that rectangle is used as the type argument
    // for the list and produce an import for QQuickRectangle.
    // Failure to do so will produce code that cannot compile and the
    // test will fail at build time.
    property list<Rectangle> listWithUniqueReferenceToType : []
}