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

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

    Scope6Nested {
        id: nested
    }
}