]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/issue-67690-type-alias-bound-diagnostic-crash.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / test / ui / type / issue-67690-type-alias-bound-diagnostic-crash.rs
1 // Regression test for issue #67690
2 // Rustc endless loop out-of-memory and consequent SIGKILL in generic new type
3
4 // check-pass
5 pub type T<P: Send + Send + Send> = P;
6 //~^ WARN bounds on generic parameters are not enforced in type aliases
7
8 fn main() {}