tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 06 Jul 2010 15:10:48 +0300
changeset 30 5dc02b23752f
permissions -rw-r--r--
Revision: 201025 Kit: 2010127

import Qt 4.7

QtObject {
    property int a: 10
    property bool b: false

    property int test

    test: ((a == 10)?(a + 1):0) + ((b == true)?9:3)
}