tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:41:55 +0100
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
child 33 3e2da88830cd
permissions -rw-r--r--
Catchup to latest Symbian^4

import Qt 4.7

Item {
    id: root

    property int foo: 12
    property int console: 11

    property bool test1: foo == 12
    property bool test2: console != 11
    property bool test3: root.console == 11
}