rust/tests/ui/impl-trait/issue-100187.rs

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

13 lines
172 B
Rust
Raw Normal View History

2022-08-09 13:42:59 -05:00
// check-pass
trait Trait<T> {
type Ty;
}
impl Trait<&u8> for () {
type Ty = ();
}
fn test<'a, 'b>() -> impl Trait<&'a u8, Ty = impl Sized + 'b> {}
fn main() {}