blob: 4ae7ca0d0756d132b35a51b049d3cd6fa7757085 [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 14.2
description: >
Empty arrow function returns undefined
---*/
var empty = () => {};
assert.sameValue(empty(), undefined);