dart-sdk/tests/language_2/void
Robert Nystrom 3bc7d9562f Migrate "u" and "v" directory language tests off @compile-error.
The "@compile-error" comment is an old not-great way of defining static
error tests.

See: https://github.com/dart-lang/sdk/issues/45634
Change-Id: I3a41bb83767052abda1fdfc77e21bd1a83188482
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/296441
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Jake Macdonald <jakemac@google.com>
Commit-Queue: Bob Nystrom <rnystrom@google.com>
2023-04-20 22:33:22 +00:00
..
await_void_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
generalized_void_syntax_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
generalized_void_usage_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +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 "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_future_future_or_void_async_error1_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_future_future_or_void_async_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_future_future_or_void_sync_error0_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_future_future_or_void_sync_error1_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_future_future_or_void_sync_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_future_or_future_or_void_sync_error1_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_future_or_future_or_void_sync_error2_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_future_or_future_or_void_sync_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_future_or_void_async_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_future_or_void_sync_error3_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_future_or_void_sync_error4_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_future_or_void_sync_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_future_void_async_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_void_async_error0_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_void_async_error1_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_void_async_error2_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_void_async_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
return_void_sync_error0_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_void_sync_error1_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_void_sync_error2_test.dart Migrate "u" and "v" directory language tests off @compile-error. 2023-04-20 22:33:22 +00:00
return_void_sync_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
void_arrow_return_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
void_block_return_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
void_check_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
void_subtype_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
void_type_callbacks_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
void_type_function_types_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
void_type_override_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
void_type_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +00:00
void_type_usage_test.dart Add language versions to _2 test libraries 2021-04-26 17:58:57 +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.