babel/test/fixtures/traceur/AsyncFunctions/Error_AsyncArrow2.js
2015-01-04 19:40:09 +11:00

7 lines
112 B
JavaScript

// Options: --async-functions
// Error: :6:1: Unexpected token =>
var async = () => 1;
var x = async (y)
=> y;