blob: 5ee3c027f404910e78cc539511b7e451ea9a58cc [file] [log] [blame]
// Regression test for issue #67690
// Rustc endless loop out-of-memory and consequent SIGKILL in generic new type
//@ check-pass
pub type T<P: Send + Send + Send> = P;
//~^ WARN bounds on generic parameters are not enforced in type aliases
fn main() {}