-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
421 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
trait A { | ||
type Type; //~ NOTE ambiguous `Type` from `A` | ||
const CONST: usize = 1; //~ NOTE candidate #1 | ||
fn foo(&self); //~ NOTE candidate #1 | ||
} | ||
|
||
trait B { | ||
type Type; //~ NOTE ambiguous `Type` from `B` | ||
const CONST: usize; //~ NOTE candidate #2 | ||
fn foo(&self); //~ NOTE candidate #2 | ||
} | ||
|
||
trait C: A + B {} | ||
|
||
fn a<T: C>(t: T) { | ||
t.foo(); //~ ERROR multiple applicable items in scope | ||
//~^ NOTE multiple `foo` found | ||
//~| HELP disambiguate the method | ||
//~| HELP disambiguate the method | ||
let _ = T::CONST; //~ ERROR multiple applicable items in scope | ||
//~^ NOTE multiple `CONST` found | ||
//~| HELP disambiguate | ||
//~| HELP disambiguate | ||
let _: T::Type; //~ ERROR ambiguous associated type | ||
//~^ NOTE ambiguous associated type `Type` | ||
//~| HELP use fully qualified syntax | ||
//~| HELP use fully qualified syntax | ||
} | ||
|
||
#[derive(Debug)] | ||
struct S; | ||
|
||
impl<T: std::fmt::Debug> A for T { | ||
type Type = (); | ||
const CONST: usize = 1; //~ NOTE candidate #1 | ||
fn foo(&self) {} //~ NOTE candidate #1 | ||
} | ||
|
||
impl<T: std::fmt::Debug> B for T { | ||
type Type = (); | ||
const CONST: usize = 1; //~ NOTE candidate #2 | ||
fn foo(&self) {} //~ NOTE candidate #2 | ||
} | ||
|
||
fn main() { | ||
let s = S; | ||
S::foo(&s); //~ ERROR multiple applicable items in scope | ||
//~^ NOTE multiple `foo` found | ||
//~| HELP disambiguate | ||
//~| HELP disambiguate | ||
let _ = S::CONST; //~ ERROR multiple applicable items in scope | ||
//~^ NOTE multiple `CONST` found | ||
//~| HELP disambiguate | ||
//~| HELP disambiguate | ||
let _: S::Type; //~ ERROR ambiguous associated type | ||
//~^ HELP use the fully-qualified path | ||
} |
Oops, something went wrong.