This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-06-05 03:38:29 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
901b340c1f
rust
/
tests
/
ui
/
feature-gates
/
feature-gate-doc_cfg.rs
3 lines
72 B
Rust
Raw
Normal View
History
Unescape
Escape
feature_gate: Merge various attribute gating functions
2019-09-14 18:29:59 +00:00
#[
doc(cfg(unix))
]
//~ ERROR: `#[doc(cfg)]` is experimental
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.
2017-08-05 06:38:52 +00:00
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink