dart-sdk/tests/language/void
Ahmed Ashour d6975c1905 master branch to main
Fixes #47190

TEST=None, only markdown files where edited.

Change-Id: Ife204f9c792b6bce30d0cd7bf2260ced11c8f2b4
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/213049
Reviewed-by: Nicholas Shahan <nshahan@google.com>
Reviewed-by: Alexander Thomas <athom@google.com>
2021-09-15 06:22:23 +00:00
..
await_void_error_test.dart
generalized_void_syntax_test.dart Migrate void tests to Null Safety. 2020-06-03 13:22:10 +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.