rust/tests/target/issue-945.rs

18 lines
206 B
Rust
Raw Normal View History

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"
}
}