diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs index b5d31c7f6dc..b9d6102b201 100644 --- a/tokio-macros/src/lib.rs +++ b/tokio-macros/src/lib.rs @@ -210,7 +210,8 @@ use proc_macro::TokenStream; /// /// This option is only compatible with the `current_thread` runtime. /// -/// ```no_run +/// ``` +/// # #![allow(unknown_lints, unexpected_cfgs)] /// #[cfg(tokio_unstable)] /// #[tokio::main(flavor = "current_thread", unhandled_panic = "shutdown_runtime")] /// async fn main() { @@ -224,7 +225,8 @@ use proc_macro::TokenStream; /// /// Equivalent code not using `#[tokio::main]` /// -/// ```no_run +/// ``` +/// # #![allow(unknown_lints, unexpected_cfgs)] /// #[cfg(tokio_unstable)] /// fn main() { /// tokio::runtime::Builder::new_current_thread() @@ -477,7 +479,8 @@ pub fn main_rt(args: TokenStream, item: TokenStream) -> TokenStream { /// /// This option is only compatible with the `current_thread` runtime. /// -/// ```no_run +/// ``` +/// # #![allow(unknown_lints, unexpected_cfgs)] /// #[cfg(tokio_unstable)] /// #[tokio::test(flavor = "current_thread", unhandled_panic = "shutdown_runtime")] /// async fn my_test() { @@ -491,7 +494,8 @@ pub fn main_rt(args: TokenStream, item: TokenStream) -> TokenStream { /// /// Equivalent code not using `#[tokio::test]` /// -/// ```no_run +/// ``` +/// # #![allow(unknown_lints, unexpected_cfgs)] /// #[cfg(tokio_unstable)] /// #[test] /// fn my_test() {