summaryrefslogtreecommitdiff
path: root/src/lib/corelib/language/testdata/defaultvalue/modules/lower/lower.qbs
blob: 0540185e93914df177c5ebabc63719eab1185324 (plain)
1
2
3
4
5
6
7
import qbs

Module {
    property string prop1
    property string prop2: prop1 === "blubb" ? "withBlubb" : "withoutBlubb"
    property stringList listProp: prop1 === "blubb" ? ["blubb", "other"] : ["other"]
}