rust/src/test/ui/polymorphization/promoted-function-3.rs
2021-03-05 17:13:57 -03:00

14 lines
248 B
Rust

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