blob: 849e1e8b58b170d43f17b6e5a64cbfe21b02f4f0 [file]
// Copyright (c) 2022, 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/diagnostic/diagnostic.dart' as diag;
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(RecursiveInterfaceInheritanceWithTest);
});
}
@reflectiveTest
class RecursiveInterfaceInheritanceWithTest extends PubPackageResolutionTest {
@SkippedTest() // TODO(scheglov): implement augmentation
test_class_inAugmentation() async {
await assertErrorsInCode(
r'''
class A extends Object {}
augment class A with A {}
''',
[
error(diag.recursiveInterfaceInheritanceWith, 6, 1),
error(diag.classUsedAsMixin, 47, 1),
],
);
}
test_classTypeAlias() async {
await assertErrorsInCode(
r'''
mixin class M = Object with M;
''',
[error(diag.recursiveInterfaceInheritanceWith, 12, 1)],
);
}
}