rust/tests/ui/const-generics/issues/issue-68596.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
183 B
Rust
Raw Normal View History

2020-07-16 04:54:20 -05:00
// check-pass
pub struct S(u8);
impl S {
pub fn get<const A: u8>(&self) -> &u8 {
&self.0
}
}
fn main() {
const A: u8 = 5;
let s = S(0);
s.get::<A>();
}