aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeloader/data/crash.qml
blob: c7a4407add4df46825638f0cc0ff52706e0b2d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 1.0

Rectangle {
    width: 400
    height: 400

    function setLoaderSource() {
        myLoader.source = "GreenRect.qml"
    }

    Loader {
        id: myLoader
    }
}