aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeworkerscript/data/stressDispose.qml
blob: 3e8465d6fecea3ebfd50c3a9a496d3e9844fdcf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Item {
    WorkerScript {
        id: worker
        source: "stressDispose.js"
    }

    Component.onCompleted: {
        worker.sendMessage(10);
    }
}