-
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
1 parent
4db3d12
commit b58ce4e
Showing
2 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
tests/ui/associated-type-bounds/name-same-as-generic-type-issue-128249.rs
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,15 @@ | ||
trait Trait<Type> { | ||
type Type; | ||
|
||
fn one(&self, val: impl Trait<Type: Default>); | ||
//~^ ERROR trait takes 1 generic argument but 0 generic arguments were supplied | ||
|
||
fn two<T: Trait<Type: Default>>(&self) -> T; | ||
//~^ ERROR trait takes 1 generic argument but 0 generic arguments were supplied | ||
|
||
fn three<T>(&self) -> T where | ||
T: Trait<Type: Default>,; | ||
//~^ ERROR trait takes 1 generic argument but 0 generic arguments were supplied | ||
} | ||
|
||
fn main() {} |
51 changes: 51 additions & 0 deletions
51
tests/ui/associated-type-bounds/name-same-as-generic-type-issue-128249.stderr
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,51 @@ | ||
error[E0107]: trait takes 1 generic argument but 0 generic arguments were supplied | ||
--> $DIR/name-same-as-generic-type-issue-128249.rs:4:30 | ||
| | ||
LL | fn one(&self, val: impl Trait<Type: Default>); | ||
| ^^^^^ expected 1 generic argument | ||
| | ||
note: trait defined here, with 1 generic parameter: `Type` | ||
--> $DIR/name-same-as-generic-type-issue-128249.rs:1:7 | ||
| | ||
LL | trait Trait<Type> { | ||
| ^^^^^ ---- | ||
help: add missing generic argument | ||
| | ||
LL | fn one(&self, val: impl Trait<Type, Type: Default>); | ||
| +++++ | ||
|
||
error[E0107]: trait takes 1 generic argument but 0 generic arguments were supplied | ||
--> $DIR/name-same-as-generic-type-issue-128249.rs:7:15 | ||
| | ||
LL | fn two<T: Trait<Type: Default>>(&self) -> T; | ||
| ^^^^^ expected 1 generic argument | ||
| | ||
note: trait defined here, with 1 generic parameter: `Type` | ||
--> $DIR/name-same-as-generic-type-issue-128249.rs:1:7 | ||
| | ||
LL | trait Trait<Type> { | ||
| ^^^^^ ---- | ||
help: add missing generic argument | ||
| | ||
LL | fn two<T: Trait<Type, Type: Default>>(&self) -> T; | ||
| +++++ | ||
|
||
error[E0107]: trait takes 1 generic argument but 0 generic arguments were supplied | ||
--> $DIR/name-same-as-generic-type-issue-128249.rs:11:12 | ||
| | ||
LL | T: Trait<Type: Default>,; | ||
| ^^^^^ expected 1 generic argument | ||
| | ||
note: trait defined here, with 1 generic parameter: `Type` | ||
--> $DIR/name-same-as-generic-type-issue-128249.rs:1:7 | ||
| | ||
LL | trait Trait<Type> { | ||
| ^^^^^ ---- | ||
help: add missing generic argument | ||
| | ||
LL | T: Trait<Type, Type: Default>,; | ||
| +++++ | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0107`. |