exports.handler = __f0;

function __f0() {
  return (function() {
    with({ this: undefined, arguments: undefined }) {

return () => {
    let y = 5;
    class foo{constructor(baz) {this.bar = baz;}get() {return this.bar}set(bing){this.bar = bing}}
    let x=new foo(1)
    x.set(y)
};

    }
  }).apply(undefined, undefined).apply(this, arguments);
}
