summaryrefslogtreecommitdiff
path: root/tests/auto/language/testdata/erroneous/original-in-export-item2.qbs
blob: 1c9f3de4bfba1f38e6957b0acb9663c8854317be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Project {
    Product {
        name: "a"
        Export {
            x.y.z: original
        }
    }
    Product {
        name: "b"
        Depends { name: "a" }
    }
}