]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-param.rs
Merge commit 'e18101137866b79045fee0ef996e696e68c920b4' into clippyup
[rust.git] / src / test / ui / type-param.rs
1 // run-pass
2
3 #![allow(non_camel_case_types)]
4 #![allow(dead_code)]
5
6
7 // pretty-expanded FIXME #23616
8
9 type lteq<T> = extern "C" fn(T) -> bool;
10
11 pub fn main() { }