From 6fc138136d8d6cf9f8478efa501e3a173e5c0277 Mon Sep 17 00:00:00 2001 From: Dave Huseby Date: Tue, 14 Apr 2015 11:18:12 -0700 Subject: [PATCH] disabling a test for bitrig and openbsd --- src/doc/trpl/no-stdlib.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/no-stdlib.md b/src/doc/trpl/no-stdlib.md index 094c82a08cc9d..67db919c59f45 100644 --- a/src/doc/trpl/no-stdlib.md +++ b/src/doc/trpl/no-stdlib.md @@ -103,7 +103,7 @@ necessary functionality for writing idiomatic and effective Rust code. As an example, here is a program that will calculate the dot product of two vectors provided from C, using idiomatic Rust practices. -``` +```ignore #![feature(lang_items, start, no_std, core, libc)] #![no_std]