1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
impl Bar { default const unsafe fn foo() { "hi" } } impl Baz { default unsafe extern "C" fn foo() { "hi" } } impl Foo for Bar { default fn foo() { "hi" } }