| Index: pkg/analyzer/test/generated/hint_code_test.dart
|
| diff --git a/pkg/analyzer/test/generated/hint_code_test.dart b/pkg/analyzer/test/generated/hint_code_test.dart
|
| index 1f6f81acfbe2b25f5a558934aa045522fc20501a..b0030895c02545ce66a3d638e30fe605639585ac 100644
|
| --- a/pkg/analyzer/test/generated/hint_code_test.dart
|
| +++ b/pkg/analyzer/test/generated/hint_code_test.dart
|
| @@ -119,6 +119,22 @@ m(x) {
|
| verify([source]);
|
| }
|
|
|
| + void test_canBeNullAfterNullAware_false_null() {
|
| + Source source = addSource(r'''
|
| +m(x) {
|
| + x?.a.hashCode;
|
| + x?.a.runtimeType;
|
| + x?.a.toString();
|
| + x?.b().hashCode;
|
| + x?.b().runtimeType;
|
| + x?.b().toString();
|
| +}
|
| +''');
|
| + computeLibrarySourceErrors(source);
|
| + assertNoErrors(source);
|
| + verify([source]);
|
| + }
|
| +
|
| void test_canBeNullAfterNullAware_methodInvocation() {
|
| Source source = addSource(r'''
|
| m(x) {
|
|
|