blob: 319b8026954b00e0eb14256cc39f966fff250066 [file] [log] [blame]
// run-pass
#![allow(dead_code)]
// Possibly-dynamic size of typaram should be cleared at pointer boundary.
// pretty-expanded FIXME #23616
fn bar<T: Sized>() { }
fn foo<T>() { bar::<&T>() }
pub fn main() { }