2018-01-09 15:36:42 +01:00

4 lines
70 B
JavaScript

const x = () => x;
const y = x => x();
const z = { z: () => y(x) }.z;