aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/testdata/id-uniqueness.qbs
blob: cfbaf8548341d0f991207680bb163be701df8966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import qbs 1.0
import "idusagebase.qbs" as DerivedProduct

Project {
    id: theProject
    DerivedProduct {
        id: baseProduct         // OK - even though 'baseProduct' is used in the base item.
    }
    DerivedProduct {
        id: baseProduct         // ERROR
    }
}