Sign in
fuchsia
/
third_party
/
rust
/
0ba9db87e61adcfd9a978188f61c20d9b423a099
/
.
/
tests
/
crashes
/
120482.rs
blob: 6cbc2009c5f63a4f67879485ac0e2fb0ffff1c4d [
file
] [
log
] [
blame
]
//@ known-bug: #120482
//@ edition:2021
#![
feature
(
object_safe_for_dispatch
)]
trait
B
{
fn
bar
(&
self
,
x
:
&
Self
);
}
trait
A
{
fn
g
(
new
:
B
)
->
B
;
}
fn
main
()
{}