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

Project {
    Product {
        name: "p1"
        Export {
            something.other: "x"
        }
    }
    Product {
        Depends { name: "p1" }
    }
}