aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.4/packages/api-utils/tests/modules/dupe.js
blob: f5ce8c95045e1848e9e50ecd832ea2ab32d99f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
define({
  name: 'dupe'
});

// This is wrong and should not be allowed. Only one call to
// define per file.
define([], function () {
  return {
    name: 'dupe2'
  };
});