]> git.proxmox.com Git - rustc.git/blame - tests/ui/type-alias-impl-trait/issue-60371.rs
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / ui / type-alias-impl-trait / issue-60371.rs
CommitLineData
48663c56
XL
1trait Bug {
2 type Item: Bug;
3
4 const FUN: fn() -> Self::Item;
5}
6
7impl Bug for &() {
353b0b11 8 type Item = impl Bug; //~ ERROR `impl Trait` in associated types is unstable
48663c56
XL
9
10 const FUN: fn() -> Self::Item = || ();
94222f64 11 //~^ ERROR the trait bound `(): Bug` is not satisfied
48663c56
XL
12}
13
14fn main() {}