From e3cc0c539a27bde97a8e2e27837999e330ffa49e Mon Sep 17 00:00:00 2001 From: George Bateman Date: Fri, 27 Dec 2024 15:12:08 +0000 Subject: [PATCH] Update coverage-instrumentation.md CI broken, presumably by https://github.com/rust-lang/rust/pull/134672. --- src/attributes/coverage-instrumentation.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/attributes/coverage-instrumentation.md b/src/attributes/coverage-instrumentation.md index 8fbec0fbe..8f361ae9a 100644 --- a/src/attributes/coverage-instrumentation.md +++ b/src/attributes/coverage-instrumentation.md @@ -20,6 +20,8 @@ The attribute uses the [_MetaListIdents_] syntax to specify its behavior: * `#[coverage(on)]` (the default) indicates that all functions within an item, recursively, *should* be instrumented, unless specified by another attribute. ```rust +#![feature(coverage_attribute)] + #[coverage(off)] fn example() {}