blob: 11916bd538a1ef5defb441e6deb69533f408280f [file] [log] [blame]
// Copyright (c) 2021, 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 'context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(FieldFormalParameterResolutionTest);
});
}
@reflectiveTest
class FieldFormalParameterResolutionTest extends PubPackageResolutionTest {
/// There was a crash.
/// https://github.com/dart-lang/sdk/issues/46968
test_class_hasTypeParameters() async {
await assertNoErrorsInCode(r'''
class A {
T Function<T>(T) f;
A(U this.f<U>(U a));
}
''');
}
test_enum() async {
await assertNoErrorsInCode(r'''
enum E {
v(0);
final int f;
const E(this.f);
}
''');
assertFieldFormalParameter(
findNode.fieldFormalParameter('this.f'),
element: findElement.fieldFormalParameter('f'),
);
}
}