rust/src/test/ui/sized-borrowed-pointer.rs
2019-07-27 18:56:16 +03:00

10 lines
212 B
Rust

// run-pass
#![allow(dead_code)]
// Possibly-dynamic size of typaram should be cleared at pointer boundary.
// pretty-expanded FIXME #23616
fn bar<T: Sized>() { }
fn foo<T>() { bar::<&T>() }
pub fn main() { }