aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/deepInlineComponentScriptBinding.qml
blob: b5ccf5045d38b41582b8b2322e9095083d39d7e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick

Item {
    // Inline component must be two components deep to hit an assert
    QtObject {
        id: oneDown
        component OneDepth : QtObject {
            // Triggered by any script binding
            objectName: "hel" + "lo"
        }
    }
}