2018-09-14 05:20:28 -05:00
|
|
|
#![allow(dead_code)]
|
2013-05-30 20:40:55 -05:00
|
|
|
// Possibly-dynamic size of typaram should be cleared at pointer boundary.
|
|
|
|
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-05-30 20:40:55 -05:00
|
|
|
fn bar<T: Sized>() { }
|
2014-05-05 20:56:44 -05:00
|
|
|
fn foo<T>() { bar::<Box<T>>() }
|
2013-09-25 02:43:37 -05:00
|
|
|
pub fn main() { }
|