summaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/global-inaccessible-props.js
blob: aee7ce02b88167b22bf53d680cfdc36544f906f3 (plain)
1
2
3
4
5
6
7
8

(function(window) {
  if (!('errorOnAccess' in window))
    throw Error();

  window.test = 'result of global-inaccessible-props';

})(typeof window != 'undefined' ? window : global);