aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/metaobjectRevisionErrors.qml
blob: 8a7e24d7887030ca909161119219a3b61d2855bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0
import Qt.test 1.0

MyRevisionedClass
{
    // Will not hit optimizer
    property real p1: prop1 % 3
    property real p2: prop2 % 3

    // Should hit optimizer
    property real p3: prop2

    Component.onCompleted: method2()
}