blob: 89f983a7215ee6e9c6704a97f992033530f223fa [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(NonConstantAnnotationConstructorTest);
});
}
@reflectiveTest
class NonConstantAnnotationConstructorTest extends PubPackageResolutionTest {
test_named() async {
await assertErrorsInCode(r'''
class A {
A.fromInt() {}
}
@A.fromInt()
main() {
}
''', [
error(CompileTimeErrorCode.NON_CONSTANT_ANNOTATION_CONSTRUCTOR, 29, 12),
]);
}
test_unnamed() async {
await assertErrorsInCode(r'''
class A {
A() {}
}
@A()
main() {
}
''', [
error(CompileTimeErrorCode.NON_CONSTANT_ANNOTATION_CONSTRUCTOR, 21, 4),
]);
}
}