forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#63474 - adamAndMath:master, r=Centril
Add tests for issue rust-lang#53598 and rust-lang#57700 Closes rust-lang#53598 and rust-lang#57700
- Loading branch information
Showing
4 changed files
with
74 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// ignore-tidy-linelength | ||
#![feature(type_alias_impl_trait)] | ||
|
||
use std::fmt::Debug; | ||
|
||
pub trait Foo { | ||
type Item: Debug; | ||
|
||
fn foo<T: Debug>(_: T) -> Self::Item; | ||
} | ||
|
||
#[derive(Debug)] | ||
pub struct S<T>(std::marker::PhantomData<T>); | ||
|
||
pub struct S2; | ||
|
||
impl Foo for S2 { | ||
type Item = impl Debug; | ||
|
||
fn foo<T: Debug>(_: T) -> Self::Item { | ||
//~^ Error type parameter `T` is part of concrete type but not used in parameter list for the `impl Trait` type alias | ||
S::<T>(Default::default()) | ||
} | ||
} | ||
|
||
fn main() { | ||
S2::foo(123); | ||
} |
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,12 @@ | ||
error: type parameter `T` is part of concrete type but not used in parameter list for the `impl Trait` type alias | ||
--> $DIR/issue-53598.rs:20:42 | ||
| | ||
LL | fn foo<T: Debug>(_: T) -> Self::Item { | ||
| __________________________________________^ | ||
LL | | | ||
LL | | S::<T>(Default::default()) | ||
LL | | } | ||
| |_____^ | ||
|
||
error: aborting due to previous error | ||
|
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,22 @@ | ||
// ignore-tidy-linelength | ||
#![feature(arbitrary_self_types)] | ||
#![feature(type_alias_impl_trait)] | ||
|
||
use std::ops::Deref; | ||
|
||
trait Foo { | ||
type Bar: Foo; | ||
|
||
fn foo(self: impl Deref<Target = Self>) -> Self::Bar; | ||
} | ||
|
||
impl<C> Foo for C { | ||
type Bar = impl Foo; | ||
|
||
fn foo(self: impl Deref<Target = Self>) -> Self::Bar { | ||
//~^ Error type parameter `impl Deref<Target = Self>` is part of concrete type but not used in parameter list for the `impl Trait` type alias | ||
self | ||
} | ||
} | ||
|
||
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,12 @@ | ||
error: type parameter `impl Deref<Target = Self>` is part of concrete type but not used in parameter list for the `impl Trait` type alias | ||
--> $DIR/issue-57700.rs:16:58 | ||
| | ||
LL | fn foo(self: impl Deref<Target = Self>) -> Self::Bar { | ||
| __________________________________________________________^ | ||
LL | | | ||
LL | | self | ||
LL | | } | ||
| |_____^ | ||
|
||
error: aborting due to previous error | ||
|