blob: 337a369619b17fc8c205b6b6b46b064b6c247b27 [file] [log] [blame]
// Copyright (c) 2020, 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.
// @dart=2.8
import 'nsm_forwarder_to_member_signature_lib.dart';
class B extends A {}
class C implements B {
@override
noSuchMethod(_) => 42;
}
main() {}