blob: 786dfe7fe107bf7035028964606d4b9c904c76fa [file] [log] [blame]
// 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:analyzer/src/error/codes.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ConstNotInitializedTest);
defineReflectiveTests(ConstNotInitializedWithNullSafetyTest);
});
}
@reflectiveTest
class ConstNotInitializedTest extends PubPackageResolutionTest {
test_extension_static() async {
await assertErrorsInCode('''
extension E on String {
static const F;
}''', [
error(CompileTimeErrorCode.CONST_NOT_INITIALIZED, 39, 1),
]);
}
test_instanceField_static() async {
await assertErrorsInCode(r'''
class A {
static const F;
}
''', [
error(CompileTimeErrorCode.CONST_NOT_INITIALIZED, 25, 1),
]);
}
test_local() async {
await assertErrorsInCode(r'''
f() {
const int x;
}
''', [
error(HintCode.UNUSED_LOCAL_VARIABLE, 18, 1),
error(CompileTimeErrorCode.CONST_NOT_INITIALIZED, 18, 1),
]);
}
test_top_level() async {
await assertErrorsInCode('''
const F;
''', [
error(CompileTimeErrorCode.CONST_NOT_INITIALIZED, 6, 1),
]);
}
}
@reflectiveTest
class ConstNotInitializedWithNullSafetyTest extends ConstNotInitializedTest
with WithNullSafetyMixin {}