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

QtObject {
    property DirectBindable a: DirectBindable {
        id: aId
        x: WeatherModelUrlUtils.url(1)
    }

    property IndirectBindable b: IndirectBindable {
        id: bId
        y: aId.x
    }
}