//! test_output(37) export default function main() { return constant(37)(); } function constant(value: T) { return () => value; }