blob: 824e814431030f9becddc1d3a097e7f2d6e29fc5 [file] [log] [blame]
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
topLevel({int x: 3}) {}
class Class {
method({int x: 3}) {
local({int x: 3}) {}
({int x: 3}) {};
}
}