blob: 57eed82a9f998cd5dbb5af1aff7c625286006702 [file] [log] [blame]
// Copyright (c) 2021, 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 Effectively, each super parameters, super.p:
/// ...
/// Cannot be positional if the super-constructor invocation already has
/// positional arguments.
///
/// @description Check that super parameter сannot be positional if the
/// super-constructor invocation already has positional arguments.
/// @author sgrekhov@unipro.ru
class S {
num s1, s2;
S(this.s1, this.s2);
}
class C extends S {
int c;
C(int x, super.s1) : this.c = x + 1, super(42);
// ^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
C(1, 2);
}