mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +00:00

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