]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-doc_alias.rs
Add a comment why rustdoc loads crates from the sysroot
[rust.git] / src / test / ui / feature-gates / feature-gate-doc_alias.rs
1 #[doc(alias = "foo")] //~ ERROR: `#[doc(alias)]` is experimental
2 pub struct Foo;
3
4 fn main() {}