blob: d27e808826055cb2f2e64f2c2be54979f5022bf4 [file] [log] [blame]
// Copyright (c) 2025, 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.
class B {
final int x;
const B(int y) : x = y + 1;
}