mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
22 lines
297 B
Rust
22 lines
297 B
Rust
|
#![feature(trait_alias)]
|
||
|
|
||
|
pub struct Foo;
|
||
|
|
||
|
pub trait Bar {
|
||
|
const BAZ: u8;
|
||
|
}
|
||
|
|
||
|
impl Bar for Foo {
|
||
|
#[doc(alias = "CONST_BAZ")] //~ ERROR
|
||
|
const BAZ: u8 = 0;
|
||
|
}
|
||
|
|
||
|
impl Foo {
|
||
|
#[doc(alias = "CONST_FOO")] // ok!
|
||
|
pub const FOO: u8 = 0;
|
||
|
|
||
|
pub fn bar() -> u8 {
|
||
|
Self::FOO
|
||
|
}
|
||
|
}
|