```compile_fail #[macro_use] extern crate partial_application; fn main() { struct Foo(u32); let sub = |a: u32, b: Foo| a - b.0; let f = Foo(5); let sub5 = partial!(move sub => _, f); sub5(5); sub5(5); } ```
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected