blob: 8147f29ba03757321ba3b55eefc3f5c5178f7d35 [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.
import 'package:analyzer/src/error/codes.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(MultipleSuperInitializersTest);
});
}
@reflectiveTest
class MultipleSuperInitializersTest extends PubPackageResolutionTest {
test_twoSuperInitializers() async {
await assertErrorsInCode(r'''
class A {}
class B extends A {
B() : super(), super() {}
}
''', [
error(CompileTimeErrorCode.INVALID_SUPER_INVOCATION, 39, 5),
error(CompileTimeErrorCode.MULTIPLE_SUPER_INITIALIZERS, 48, 7),
]);
}
}