Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelanguage / data / OnCompletedType.qml
1 import Test 1.0
2 import QtQuick 1.0
3
4 MyQmlObject {
5     property int a: Math.max(10, 9)
6     property int b: 11 
7     Component.onCompleted: console.log("Completed " + a + " " + b);
8 }