blob: 24f1186d11fe1f2dc546a638e9b653c0130c3d4a [file] [log] [blame]
// Copyright (c) 2024, 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 Base {
int method1() => 1;
int method2() => 2;
}