aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/original-in-export-item.qbs
blob: c83601cfbb9e49b5331b7763ab6681f829cb0811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Project {
    Product {
        name: "a"
        Export {
            property string p: original
        }
    }
    Product {
        name: "b"
        Depends { name: "a" }
    }
}