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