blob: 6d9bccc4c689ef76c033bf9fe651fee7d32a02f2 [file] [log] [blame]
// Weak aliases might not cover type parameters.
//@ aux-crate:foreign=parametrized-trait.rs
//@ edition:2021
#![feature(lazy_type_alias)]
#![allow(incomplete_features)]
type Identity<T> = T;
struct Local;
impl<T> foreign::Trait1<Local, T> for Identity<T> {}
//~^ ERROR type parameter `T` must be covered by another type
fn main() {}