Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-19398.rs
blob: 751fffb174487ccc4e396d85b25ce1933af73e10 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ pretty-expanded FIXME #23616
trait
T
{
unsafe
extern
"Rust"
fn
foo
(&
self
);
}
impl
T
for
()
{
unsafe
extern
"Rust"
fn
foo
(&
self
)
{}
}
fn
main
()
{}