]> git.proxmox.com Git - rustc.git/blame - src/test/ui/generic-associated-types/missing_lifetime_const.rs
New upstream version 1.65.0+dfsg1
[rustc.git] / src / test / ui / generic-associated-types / missing_lifetime_const.rs
CommitLineData
17df50a5
XL
1trait Foo {
2 type Assoc<'a, const N: usize>;
3}
4
5fn foo<T: Foo>() {
6 let _: <T as Foo>::Assoc<3>;
7 //~^ ERROR this associated type
8}
9
10fn main() {}