blob: 999e619f1ec90a3c7737aa53de0b21b1ef866744 [file] [log] [blame]
// 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.
/// @assertion It is a compile-time error if:
/// - The signature of the function augmentation does not exactly match the
/// original function. This means the return types must be the same; there
/// must be the same number of positional, optional, and named parameters; the
/// types of corresponding positional and optional parameters must be the
/// same; the names and types of named parameters must be the same; any type
/// parameters and bounds must be the same; and any required or covariant
/// modifiers must match.
///
/// @description Checks that it is a compile-time error if type of named
/// parameters of an augmentation doesn't exactly match the original function
/// @author sgrekhov22@gmail.com
/// @issue 55478
// SharedOptions=--enable-experiment=macros
augment library 'augmenting_functions_A04_t10.dart';
augment void topLevelFunction({int j}) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
augment class C {
augment static void staticMethod({int j}) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
augment void instanceMethod({int j}) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
augment mixin M {
augment static void staticMethod({int j}) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
augment void instanceMethod({int j}) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
augment enum E {
augment e1;
augment static void staticMethod({int j}) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
augment void instanceMethod({int j}) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
augment extension Ext {
augment static void staticMethod({int j}) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
augment void instanceMethod({int j}) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
}