aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/qmlUsing.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/data/qmlUsing.qml')
-rw-r--r--tests/auto/qml/qmlcppcodegen/data/qmlUsing.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/data/qmlUsing.qml b/tests/auto/qml/qmlcppcodegen/data/qmlUsing.qml
index 8c7aca421e..29e66539f7 100644
--- a/tests/auto/qml/qmlcppcodegen/data/qmlUsing.qml
+++ b/tests/auto/qml/qmlcppcodegen/data/qmlUsing.qml
@@ -9,12 +9,18 @@ import TestTypes as T
T.UsingUserObject {
id: self
property int valA: val.a
+ // property int valB: val.getB()
property int myA: a
+ property int myB: getB()
property int myA2: self.a
+ property int myB2: self.getB()
function twiddle() {
val.a = 55
+ // val.setB(56)
a = 57
+ setB(58)
self.a = 59
+ self.setB(60)
}
}