blob: 125c38b04e86ce662382b6c16891c32f8791f636 [file]
// Copyright (c) 2019, 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:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ExtendsDeferredClassTest);
});
}
@reflectiveTest
class ExtendsDeferredClassTest extends PubPackageResolutionTest {
test_classTypeAlias() async {
newFile('$testPackageLibPath/lib1.dart', '''
library lib1;
class A {}
''');
await resolveTestCodeWithDiagnostics(r'''
library root;
import 'lib1.dart' deferred as a;
mixin M {}
class C = a.A with M;
// ^^^
// [diag.extendsDeferredClass] Classes can't extend deferred classes.
''');
}
test_extends_deferred_class() async {
newFile('$testPackageLibPath/lib1.dart', '''
library lib1;
class A {}
''');
await resolveTestCodeWithDiagnostics(r'''
library root;
import 'lib1.dart' deferred as a;
class B extends a.A {}
// ^^^
// [diag.extendsDeferredClass] Classes can't extend deferred classes.
''');
}
test_extends_deferred_interfaceTypeTypedef() async {
newFile('$testPackageLibPath/lib1.dart', '''
library lib1;
class A {}
class B {}
''');
await resolveTestCodeWithDiagnostics(r'''
library root;
import 'lib1.dart' deferred as a;
class B extends a.B {}
// ^^^
// [diag.extendsDeferredClass] Classes can't extend deferred classes.
''');
}
}