rust/src/test/ui/rustdoc/doc-alias-same-name.rs
Joshua Nelson bc1fbf55db Move rustdoc UI tests into a subdirectory
This also adds a little leeway to the test limit.
2021-03-08 09:17:04 -05:00

4 lines
72 B
Rust

#![crate_type = "lib"]
#[doc(alias = "Foo")] //~ ERROR
pub struct Foo;