summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/in.qml
blob: 0b5b0badfa11fd9e1aa19c7dd0401ea8f8b02773 (plain)
1
2
3
4
5
6
7
import Qt 4.7

Item {
    id: root
    property bool test1: "x" in root
    property bool test2: !("foo" in root)
}