aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.3/packages/api-utils/tests/modules/badExportAndReturn.js
blob: 0844be1ecf271af4b45149a16de0cedd1f6eba5f (plain)
1
2
3
4
5
6
// This is a bad module, it asks for exports but also returns a value from
// the define defintion function.
define(['exports'], function (exports) {    
    return 'badExportAndReturn';
});