aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/scope.6.qml
blob: 1c81e4e945ff5771cbde0868d4c15df464fc4eab (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

Item {
    id: me
    property bool test: nested.runtest(me);

    Scope6Nested {
        id: nested
    }
}