QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmllanguage / data / OnDestructionType.qml
1 import Test 1.0
2 import QtQuick 2.0
3
4 MyQmlObject {
5     property int a: Math.max(10, 9)
6     property int b: 11 
7     Component.onDestruction: console.log("Destruction " + a + " " + b);
8 }