aboutsummaryrefslogtreecommitdiff
path: root/test/tests/global-inline-export.js
blob: 0fc07aea53153e4a72b61653743de675b4e624dd (plain)
1
2
3
4
5
6
7
8
9
"format global";
"exports p.r";

(function(window) {

  window.p = {
    r: 'r'
  };
})(typeof window != 'undefined' ? window : global);