dart-sdk/tests/language/void
Robert Nystrom 7ca5ad46ce Set tests that have mixin errors as 2.19.
Mark tests that contain errors about using a class as a mixin to use
language version 2.19 where that's not an error.

This may not fix all of the tests because it's the language version of
the library where the class is declared that matters, not where the
class is used as a mixin. But most tests have all of their declarations
in the same library, so this should fix most.

Change-Id: I910439ebd2f10f731418dc588b7e4619a0841c16
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/285923
Reviewed-by: Jake Macdonald <jakemac@google.com>
Commit-Queue: Jake Macdonald <jakemac@google.com>
2023-03-01 15:03:39 +00:00
..
await_void_error_test.dart
generalized_void_syntax_test.dart Set tests that have mixin errors as 2.19. 2023-03-01 15:03:39 +00:00
generalized_void_usage_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
README.md master branch to main 2021-09-15 06:22:23 +00:00
return_future_future_or_void_async_error0_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_future_or_void_async_error1_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_future_or_void_async_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_future_or_void_sync_error0_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_future_or_void_sync_error1_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_future_or_void_sync_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_or_future_or_void_sync_error1_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_or_future_or_void_sync_error2_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_or_future_or_void_sync_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_or_void_async_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_or_void_sync_error3_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_or_void_sync_error4_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_or_void_sync_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_future_void_async_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_void_async_error0_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_void_async_error1_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_void_async_error2_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_void_async_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_void_sync_error0_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_void_sync_error1_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_void_sync_error2_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
return_void_sync_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
void_arrow_return_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
void_block_return_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
void_check_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
void_subtype_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
void_type_callbacks_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
void_type_function_types_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
void_type_override_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
void_type_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00
void_type_usage_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +00:00

Feature tests for void

This directory was created in order to hold tests pertaining to the Dart feature temporarily known as generalized void. This feature allows the type void to occur in many locations where it was previously a compile-time error, and it is intended to allow developers to express the intent that the value of certain expressions is of no interest, and help them to avoid using such values. For more details, please check the feature specification.