From a59de37e99060162a2674e3ff45409ac73595c0e Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 13 May 2015 20:07:33 -0700 Subject: [PATCH] Fix doc tests --- src/doc/trpl/associated-constants.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/doc/trpl/associated-constants.md b/src/doc/trpl/associated-constants.md index 1c097be6d68a6..2f23af5a4313e 100644 --- a/src/doc/trpl/associated-constants.md +++ b/src/doc/trpl/associated-constants.md @@ -2,7 +2,7 @@ With the `associated_consts` feature, you can define constants like this: -```rust +```rust,ignore #![feature(associated_consts)] trait Foo { @@ -41,7 +41,7 @@ error: not all trait items implemented, missing: `ID` [E0046] A default value can be implemented as well: -```rust +```rust,ignore #![feature(associated_consts)] trait Foo { @@ -68,7 +68,7 @@ add our own definition. Associated constants don’t have to be associated with a trait. An `impl` block for a `struct` works fine too: -```rust +```rust,ignore #![feature(associated_consts)] struct Foo;