about summary refs log tree commit diff
path: root/src/test/compile-fail
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2017-08-05 14:38:52 +0800
committerkennytm <kennytm@gmail.com>2017-08-10 13:43:59 +0800
commita2b888675accccedec7601cc3bd67ca028b4757c (patch)
treea13d255f58f1e86112774af9e8c297871adf5834 /src/test/compile-fail
parent8f935fbb5b7e8ea5a320082cb9e28095aa0b5759 (diff)
downloadrust-a2b888675accccedec7601cc3bd67ca028b4757c.tar.gz
rust-a2b888675accccedec7601cc3bd67ca028b4757c.zip
Implemented #[doc(cfg(...))].
This attribute has two effects:

1. Items with this attribute and their children will have the "This is
   supported on **** only" message attached in the documentation.

2. The items' doc tests will be skipped if the configuration does not
   match.
Diffstat (limited to 'src/test/compile-fail')
-rw-r--r--src/test/compile-fail/feature-gate-doc_cfg.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/compile-fail/feature-gate-doc_cfg.rs b/src/test/compile-fail/feature-gate-doc_cfg.rs
new file mode 100644
index 00000000000..1a77d918014
--- /dev/null
+++ b/src/test/compile-fail/feature-gate-doc_cfg.rs
@@ -0,0 +1,12 @@
+// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+#[doc(cfg(unix))] //~ ERROR: #[doc(cfg(...))] is experimental
+fn main() {}