Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
cross-crate
/
reexported-structs-impls-link-error-9906.rs
blob: b49951bd1f9840ab5e5f15490021805e0101c1da [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/9906
//@ run-pass
//@ aux-build:aux-9906.rs
extern
crate aux_9906
as
testmod
;
pub
fn
main
()
{
testmod
::
foo
();
testmod
::
FooBar
::
new
(
1
);
}