aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/undeclared_property_in_export_item.qbs
blob: e5fc74b7472d9b400e10b565798aa0119d1e3f8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import qbs

Project {
    Product {
        name: "p1"
        Export {
            Depends { name: "cpp" }
            cpp.blubb: "x"
        }
    }
    Product {
        Depends { name: "p1" }
    }
}