aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/versionmismatch.qml
blob: 2fa163c047f7b30c5e26d571ffb4c2e978a04446 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQml
import TestTypes 1.0

QtObject {
    property int inaccessible: 4
    property CppBaseClass a: CppBaseClass {
        property int b: inaccessible + 1
    }
    property int c: a.b
}