blob: 9f607c793bd843bd400dec9c5d8ed4f329c6b7ae [file]
// 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:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ConstDeferredClassTest);
});
}
@reflectiveTest
class ConstDeferredClassTest extends PubPackageResolutionTest {
test_namedConstructor() async {
newFile('$testPackageLibPath/lib1.dart', '''
library lib1;
class A {
const A.b();
}''');
await resolveTestCodeWithDiagnostics(r'''
library root;
import 'lib1.dart' deferred as a;
main() {
const a.A.b();
// ^^^^^
// [diag.constDeferredClass] Deferred classes can't be created with 'const'.
}''');
}
test_nonFunctionTypedef() async {
newFile('$testPackageLibPath/lib1.dart', '''
library lib1;
class A {
const A();
}
typedef B = A;
''');
await resolveTestCodeWithDiagnostics(r'''
library root;
import 'lib1.dart' deferred as a;
main() {
const a.B();
// ^^^
// [diag.constDeferredClass] Deferred classes can't be created with 'const'.
}
''');
}
test_unnamed() async {
newFile('$testPackageLibPath/lib1.dart', '''
library lib1;
class A {
const A();
}
''');
await resolveTestCodeWithDiagnostics(r'''
library root;
import 'lib1.dart' deferred as a;
main() {
const a.A();
// ^^^
// [diag.constDeferredClass] Deferred classes can't be created with 'const'.
}
''');
}
}