14 lines
201 B
Rust
14 lines
201 B
Rust
![]() |
#![feature(doc_alias)]
|
||
|
|
||
|
pub struct Bar;
|
||
|
pub trait Foo {}
|
||
|
|
||
|
#[doc(alias = "foo")] //~ ERROR
|
||
|
extern {}
|
||
|
|
||
|
#[doc(alias = "bar")] //~ ERROR
|
||
|
impl Bar {}
|
||
|
|
||
|
#[doc(alias = "foobar")] //~ ERROR
|
||
|
impl Foo for Bar {}
|