rust/tests/ui/traits/issue-59029-2.rs

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

9 lines
167 B
Rust
Raw Normal View History

2024-02-07 02:42:01 +00:00
// check-pass
#![feature(trait_alias)]
trait Svc<Req> { type Res; }
trait MkSvc<Target, Req> = Svc<Target> where <Self as Svc<Target>>::Res: Svc<Req>;
fn main() {}