summaryrefslogtreecommitdiffstats
path: root/third_party/rust/futures/tests/_require_features.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/futures/tests/_require_features.rs')
-rw-r--r--third_party/rust/futures/tests/_require_features.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/rust/futures/tests/_require_features.rs b/third_party/rust/futures/tests/_require_features.rs
new file mode 100644
index 0000000000..8046cc99a4
--- /dev/null
+++ b/third_party/rust/futures/tests/_require_features.rs
@@ -0,0 +1,13 @@
+#[cfg(not(all(
+ feature = "std",
+ feature = "alloc",
+ feature = "async-await",
+ feature = "compat",
+ feature = "io-compat",
+ feature = "executor",
+ feature = "thread-pool",
+)))]
+compile_error!(
+ "`futures` tests must have all stable features activated: \
+ use `--all-features` or `--features default,thread-pool,io-compat`"
+);