aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.qml
blob: c2ac5c845848423a4d2acea4f0a3d42a7c128b9f (plain)
1
2
3
4
5
6
7
8
import Test 1.0
import QtQuick 1.0

MyQmlObject {
    property int a: Math.max(10, 9)
    property int b: 11 
    Component.onCompleted: console.log("Completed " + a + " " + b);
}