
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
9 lines
181 B
Rust
9 lines
181 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::<&T>() }
|
|
pub fn main() { }
|