aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/stringIdUsedInWarning.qml
blob: 672c00f39bca39f4536de0da40d1df94454785c9 (plain)
1
2
3
4
5
6
7
8
9
import QtQml

QtObject {
    id: "stringy"
    property int i
    property QtObject o: QtObject {
        Component.onCompleted: console.log(i)
    }
}