cce62d31ea
Change-Id: Ic7d9ed514969eb72066812f442b51129e4d27204 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/426680 Reviewed-by: Sigmund Cherem <sigmund@google.com> Commit-Queue: Alexander Markov <alexmarkov@google.com>
15 lines
363 B
Dart
15 lines
363 B
Dart
// 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.
|
|
|
|
import 'shared.dart';
|
|
|
|
class Exported {
|
|
int method3() => 3;
|
|
}
|
|
|
|
class Implementation2 implements Interface {
|
|
@override
|
|
int method1() => 4;
|
|
}
|