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

QtObject {
    property int b: obj.prop.a

    property variant prop;
    prop: QtObject {
        property int a: 10
    }
}