Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
#![allow(dead_code)]
// Possibly-dynamic size of typaram should be cleared at pointer boundary.
fn bar<T: Sized>() { }
fn foo<T>() { bar::<&T>() }
pub fn main() { }