Sign in
fuchsia
/
third_party
/
rust
/
0ba9db87e61adcfd9a978188f61c20d9b423a099
/
.
/
tests
/
crashes
/
127916.rs
blob: 295c88df8574658377af354329071c247e80f9ad [
file
] [
log
] [
blame
]
//@ known-bug: #127916
trait
Trait
{
fn
foo
(&
self
)
->
u32
{
0
}
}
struct
F
;
struct
S
;
mod
to_reuse
{
pub
fn
foo
(&
self
)
->
u32
{}
}
impl
Trait
S
{
reuse to_reuse
::
foo
{
self
}
}