aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/testdata/base-validate/modules/m/m.qbs
blob: 6fcdc9ebc755ef247dd72cc730f9bc697b1b32e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import qbs

MParent {
    condition: true
    validate: {
        var parentResult = base;
        if (!parentResult)
            throw "Parent failed";
        throw "Parent succeeded, child failed.";
    }
}