aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/sequenceConversion.read.error.qml
blob: dd110d20ee76f82c805ff41c2d873548810d481e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.0
import Qt.test 1.0

Item {
    id: root
    objectName: "root"

    MySequenceConversionObject {
        id: msco
        objectName: "msco"
    }

    property int typeListLength: 0
    property variant typeList

    function performTest() {
        // we have NOT registered QList<NonRegisteredType> as a type
        typeListLength = msco.typeListProperty.length;
        typeList = msco.typeListProperty;
    }
}