-
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.
find the generic container rather than simply looking up for the asso…
…c with const arg
- Loading branch information
Showing
3 changed files
with
46 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// issue#132534 | ||
|
||
trait X { | ||
fn a<T>() -> T::unknown<{}> {} | ||
//~^ ERROR: associated type `unknown` not found for `T` | ||
//~| ERROR: associated type `unknown` not found for `T` | ||
} | ||
|
||
fn main() {} |
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,17 @@ | ||
error[E0220]: associated type `unknown` not found for `T` | ||
--> $DIR/unknown-assoc-with-const-arg.rs:4:21 | ||
| | ||
LL | fn a<T>() -> T::unknown<{}> {} | ||
| ^^^^^^^ associated type `unknown` not found | ||
|
||
error[E0220]: associated type `unknown` not found for `T` | ||
--> $DIR/unknown-assoc-with-const-arg.rs:4:21 | ||
| | ||
LL | fn a<T>() -> T::unknown<{}> {} | ||
| ^^^^^^^ associated type `unknown` not found | ||
| | ||
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no` | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0220`. |