aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/properties-item-with-invalid-condition.qbs
blob: 0b48731ae4e9480760d792fb07eef9dcf8c96424 (plain)
1
2
3
4
5
6
7
Product {
    Depends  { name: "cpp" }
    Properties {
       condition: cpp.nonexistingproperty.includes("somevalue")
       cpp.defines: ["ABC"]
    }
}