Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
delegation
/
ice-issue-124342.rs
blob: ad62f6bd54af926cb4154f86556cc1ceb1dce0fe [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
fn_delegation
)]
#![
allow
(
incomplete_features
)]
mod
to_reuse
{}
trait
Trait
{
reuse to_reuse
::
foo
{
foo
}
//~^ ERROR cannot find function `foo` in module `to_reuse`
//~| ERROR cannot find value `foo` in this scope
}
fn
main
()
{}