mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
574 B
Rust
16 lines
574 B
Rust
// aux-build:overlapping_pub_trait_source.rs
|
|
|
|
/*
|
|
* This crate declares two public paths, `m::Tr` and `prelude::_`. Make sure we prefer the former.
|
|
*/
|
|
extern crate overlapping_pub_trait_source;
|
|
//~^ HELP the following trait is implemented but not in scope; perhaps add a `use` for it:
|
|
//~| SUGGESTION overlapping_pub_trait_source::m::Tr
|
|
|
|
fn main() {
|
|
use overlapping_pub_trait_source::S;
|
|
S.method();
|
|
//~^ ERROR no method named `method` found for struct `S` in the current scope [E0599]
|
|
//~| HELP items from traits can only be used if the trait is in scope
|
|
}
|