blob: fc4ba900dbb4a51b497c41fcee77afca942a11ea [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00005// Flags: --always-opt --legacy-const
Ben Murdochb8a8cc12014-11-26 15:28:44 +00006
7var x = 0;
8
9function f() {
10 const c;
11 var c;
12 return 0 + x;
13}
14
15assertThrows(f);