Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#![allow(dead_code)]
fn f<T>() -> bool {
enum E<T> { V(T) }
struct S<T>(T);
true
}
fn main() {
let b = f::<isize>();
assert!(b);