Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
e42a4ca53b274dbfd94ea8f712dd9715d2e8fea5
/
.
/
tests
/
ui
/
resolve
/
issue-21221-4.rs
blob: 85321de579a825f337a47be9c79d61c3f39303b6 [
file
]
// testing whether the lookup mechanism picks up types
// defined in the outside crate
//@ aux-build:issue-21221-4.rs
extern
crate issue_21221_4
;
struct
Foo
;
impl
T
for
Foo
{}
//~^ ERROR cannot find trait `T`
fn
main
()
{
println
!(
"Hello, world!"
);
}