mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00
10 lines
204 B
Rust
10 lines
204 B
Rust
#[test]
|
|
fn features() {
|
|
let t = trybuild::TestCases::new();
|
|
|
|
#[cfg(feature = "executor-without-current-thread")]
|
|
t.compile_fail("tests/ui/executor_without_current_thread.rs");
|
|
|
|
drop(t);
|
|
}
|