aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/original-in-export-item2.qbs
blob: 68b83118fb96244842234bd3941f2f8623cca05d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import qbs // FIXME: Don't remove this import because then the test fails!

Project {
    Product {
        name: "a"
        Export {
            x.y.z: original
        }
    }
    Product {
        name: "b"
        Depends { name: "a" }
    }
}