]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/foreign-ty-syntactic-pass.rs
Rollup merge of #90345 - passcod:entry-insert, r=dtolnay
[rust.git] / src / test / ui / parser / foreign-ty-syntactic-pass.rs
1 // check-pass
2
3 fn main() {}
4
5 #[cfg(FALSE)]
6 extern "C" {
7     type A: Ord;
8     type A<'a> where 'a: 'static;
9     type A<T: Ord> where T: 'static;
10     type A = u8;
11     type A<'a: 'static, T: Ord + 'static>: Eq + PartialEq where T: 'static + Copy = Vec<u8>;
12 }