2014-12-27 17:00:20 +11:00

12 lines
163 B
JavaScript

define(["exports"], function (exports) {
"use strict";
var test = exports.test = 2;
test = 5;
(function () {
var test = 2;
test = 3;
})();
});