mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
14 lines
363 B
Rust
14 lines
363 B
Rust
#[doc(keyword = "match")] //~ ERROR: `#[doc(keyword)]` is meant for internal use only
|
|
/// wonderful
|
|
mod foo {}
|
|
|
|
trait Mine {}
|
|
|
|
#[doc(fake_variadic)] //~ ERROR: `#[doc(fake_variadic)]` is meant for internal use only
|
|
impl<T> Mine for (T,) {}
|
|
|
|
#[doc(search_unbox)] //~ ERROR: `#[doc(search_unbox)]` is meant for internal use only
|
|
struct Wrap<T> (T);
|
|
|
|
fn main() {}
|