// run-pass #![allow(unused_variables)] // aux-build:associated-types-cc-lib.rs // Test that we are able to reference cross-crate traits that employ // associated types. extern crate associated_types_cc_lib as bar; use bar::Bar; fn foo(b: B) -> ::T { Bar::get(None::) } fn main() { println!("{}", foo(3)); }