aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/aliasreset/aliasPropertyReset.5.qml
blob: b07db8ba40050023d58e56d8ebeb5fdf31a9a230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0
import Qt.test 1.0

Item {
    id: root

    AliasPropertyComponent {
        sourceComponent: returnsUndefined()
    }

    function returnsUndefined() {
        return undefined;
    }
}