aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/internalConversion.qml
blob: 7304b7a6b9311468fcb75a3a10473ebf922c98b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pragma Strict
import QtQml

QtObject {
    property QtObject offset: QtObject {
        id: a
        property string mark
    }

    function markInputs(mark: string) {
        offset.objectName = mark;
        a.mark = mark;
    }

    Component.onCompleted: markInputs("hello")
}