aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/OnDestructionType.qml
blob: 11fb9d95785b21cac5098c3c488077185f7c38de (plain)
1
2
3
4
5
6
7
8
import Test 1.0
import QtQuick 2.0

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