]> git.proxmox.com Git - rustc.git/blame - src/test/ui/associated-types/issue-64855.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / associated-types / issue-64855.rs
CommitLineData
e74abb32
XL
1pub trait Foo {
2 type Type;
3}
4
5pub struct Bar<T>(<Self as Foo>::Type) where Self: ;
6//~^ ERROR the trait bound `Bar<T>: Foo` is not satisfied
7
8fn main() {}