rust/tests/ui/associated-consts/assoc-const-eq-missing.rs

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

26 lines
471 B
Rust
Raw Normal View History

2022-02-01 09:28:31 -06:00
#![feature(associated_const_equality)]
#![allow(unused)]
pub trait Foo {
const N: usize;
}
pub struct Bar;
impl Foo for Bar {
const N: usize = 3;
}
fn foo1<F: Foo<Z = 3>>() {}
//~^ ERROR associated constant `Z` not found for `Foo`
fn foo2<F: Foo<Z = usize>>() {}
//~^ ERROR associated type `Z` not found for `Foo`
fn foo3<F: Foo<Z = 5>>() {}
//~^ ERROR associated constant `Z` not found for `Foo`
2022-02-01 09:28:31 -06:00
fn main() {
foo1::<Bar>();
foo2::<Bar>();
foo3::<Bar>();
}