Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
delegation
/
glob-bad-path.rs
blob: 067cb651777e1c7c78a817be6f5fe99f732752a5 [
file
] [
edit
]
#![
feature
(
fn_delegation
)]
#![
allow
(
incomplete_features
)]
trait
Trait
{}
struct
S
;
impl
Trait
for
u8
{
reuse unresolved
::*;
//~ ERROR cannot find module or crate `unresolved`
reuse S
::*;
//~ ERROR expected trait, found struct `S`
}
fn
main
()
{}