
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
186 B
Rust
10 lines
186 B
Rust
//@ run-pass
|
|
|
|
#![allow(dead_code)]
|
|
// Possibly-dynamic size of typaram should be cleared at pointer boundary.
|
|
|
|
|
|
|
|
fn bar<T: Sized>() { }
|
|
fn foo<T>() { bar::<Box<T>>() }
|
|
pub fn main() { }
|