Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
trait Foo {
const NUM: usize;
}
impl Foo for i32 {
const NUM: usize = 1;
const FOO: usize = <i32 as Foo>::NUM;
fn main() {
assert_eq!(1, FOO);
match 1 {
<i32 as Foo>::NUM => {},
_ => assert!(false)