aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/undefined_stringlist_element_in_probe.qbs
blob: 54d8e541cb31f5aa3deffdffbc3dc789683f4896 (plain)
1
2
3
4
5
6
7
8
9
Product {
    Probe {
        id: dummy
        property stringList l
        configure: {
            l = ["a", undefined, "b"]
        }
    }
}