61058937e5
Make checking slightly cheaper (by restricting to the right item only). Add tests.
11 lines
191 B
Rust
11 lines
191 B
Rust
extern crate dep_2_reexport;
|
|
extern crate dependency;
|
|
use dep_2_reexport::Type;
|
|
use dependency::{do_something, Trait};
|
|
|
|
fn main() {
|
|
do_something(Type);
|
|
Type.foo();
|
|
Type::bar();
|
|
}
|