mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
21 lines
297 B
Rust
21 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
|
|
}
|
|
}
|