blob: ef8d48ed072c430550d9753fae5a9b4b3e6e6b54 [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_oneSuperInitializer() async {
await assertNoErrorsInCode('''
class A {}
class B extends A {
B() : super() {}
}
''');
}
test_twoSuperInitializers() async {
await assertErrorsInCode('''
class A {}
class B extends A {
B() : super(), super() {}
}
''', [
error(CompileTimeErrorCode.MULTIPLE_SUPER_INITIALIZERS, 48, 7),
]);
}
}