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

5 lines
129 B
JavaScript

// These are actually handled by transform-arrow-functions
const x = () => x;
const y = x => x();
const z = { z: () => y(x) }.z;