blob: a0aadf3afe0fc55ab53f446b17373df3b6110bec [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.
import 'access_abstract_nsm.dart';
mixin class SuperClass {
void _inaccessibleMethod1() {}
void accessibleMethod() {}
}
mixin class NoSuchMethodClass {
dynamic noSuchMethod(Invocation invocation);
}