blob: f3ff4aa0a9fd1f5d1bf3bfd4e0a6057590ae9781 [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(FieldInitializingFormalNotAssignableTest);
});
}
@reflectiveTest
class FieldInitializingFormalNotAssignableTest
extends PubPackageResolutionTest {
test_dynamic() async {
await assertErrorsInCode('''
class A {
int x;
A(dynamic this.x) {}
}
''', [
error(CompileTimeErrorCode.FIELD_INITIALIZING_FORMAL_NOT_ASSIGNABLE, 23,
14),
]);
}
test_unrelated() async {
await assertErrorsInCode('''
class A {
int x;
A(String this.x) {}
}
''', [
error(CompileTimeErrorCode.FIELD_INITIALIZING_FORMAL_NOT_ASSIGNABLE, 23,
13),
]);
}
}