From 235833ab97f2d5dce1b0289f780a5d2fa1e1faf3 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 25 Feb 2020 14:09:23 -0800 Subject: [PATCH] Ignore a doc test --- crates/runtime/src/libcalls.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/runtime/src/libcalls.rs b/crates/runtime/src/libcalls.rs index e157736da0..62840072e7 100644 --- a/crates/runtime/src/libcalls.rs +++ b/crates/runtime/src/libcalls.rs @@ -19,7 +19,7 @@ //! instances, and modules! Therefore, always use nested blocks to ensure //! drops run before raising a trap: //! -//! ``` +//! ```ignore //! pub extern "C" fn my_lib_function(...) { //! let result = { //! // Do everything in here so drops run at the end of the block.