blob: d73ea8648c2a3302ea4a34219dfb5210bd4ac80f [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
function testFunction() {
debugger;
var sameName = 'foo';
innerFunction('not-foo');
}
function innerFunction(sameName) {
return;
}