//! Check that a reference to a potentially unsized type (`&T`) is itself considered `Sized`. //@ run-pass #![allow(dead_code)] fn bar() {} fn foo() { bar::<&T>() } pub fn main() {}