Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// compile-flags:-Zpolymorphize=on
// build-pass
fn test<T>() {
std::mem::size_of::<T>();
}
pub fn foo<T>(_: T) -> &'static fn() {
&(test::<T> as fn())
fn outer<T>() {
foo(|| ());
fn main() {
outer::<u8>();