// run-pass // compile-flags: -Zpolymorphize=on -Zmir-opt-level=4 fn caller() -> &'static usize { callee::() } fn callee() -> &'static usize { &std::mem::size_of::() } fn main() { assert_eq!(caller::<(), ()>(), &0); }