aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/in.qml
blob: f84c9a1481c0fc9512609c9a70d94d0b542aa17d (plain)
1
2
3
4
5
6
7
import QtQuick 2.0

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