blob: 6250e5baf2e87027a89f6688465e89c97950acea [file] [log] [blame]
// Copyright (c) 2019, 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.
library nnbd_class_member_declarations;
/// Test required and covariant parameters
abstract class B {
m1(int some, regular, covariant parameters, {
required p1,
int p2 = 3,
required covariant p3,
required covariant int p4,
});
m2(int sometimes, we, [String have, double optionals]);
}