blob: f503115a4a36fa7cc9bf4dcfa70c105a3eea88a5 [file] [log] [blame]
// Copyright (c) 2022, 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.
// SharedOptions=--enable-experiment=class-modifiers
// Allow final classes to be implemented in the same library.
final class FinalClass {
int foo = 0;
}
abstract class A implements FinalClass {}
class B implements FinalClass {
@override
int foo = 1;
}