blob: 08262bc2fab7d8864f5d6f2b44b8f54147751831 [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:analyzer/src/test_utilities/package_mixin.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/driver_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(InvalidLiteralAnnotationTest);
});
}
@reflectiveTest
class InvalidLiteralAnnotationTest extends DriverResolutionTest
with PackageMixin {
test_constConstructor() async {
addMetaPackage();
await assertNoErrorsInCode(r'''
import 'package:meta/meta.dart';
class A {
@literal
const A();
}
''');
}
test_nonConstConstructor() async {
addMetaPackage();
await assertErrorsInCode(r'''
import 'package:meta/meta.dart';
class A {
@literal
A() {}
}
''', [
error(HintCode.INVALID_LITERAL_ANNOTATION, 45, 8),
]);
}
test_nonConstructor() async {
addMetaPackage();
await assertErrorsInCode(r'''
import 'package:meta/meta.dart';
class A {
@literal
void m() {}
}
''', [
error(HintCode.INVALID_LITERAL_ANNOTATION, 45, 8),
]);
}
}