]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/issue-67690-type-alias-bound-diagnostic-crash.rs
Merge commit '533f0fc81ab9ba097779fcd27c8f9ea12261fef5' into psimd
[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() {}