blob: 9ebc45a8829373fb39501e46171acfc59cc83c5d [file] [log] [blame] [edit]
// Weak aliases might not cover type parameters.
//@ revisions: classic next
//@[next] compile-flags: -Znext-solver
//@ 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() {}