aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/multipleCtors.qml
blob: 61dfdb7ca526e21ce8efb466fbae0cf5e9eff851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pragma Strict

import TestTypes
import QtQml

QtObject {
    property rect r: Qt.rect(1, 2, 3, 4)
    property point p: Qt.point(5, 6);

    property withLength wr: r
    property withLength wp: p
    property withLength wi: 17
}