Add tests for #26448

This commit is contained in:
varkor 2019-02-25 23:54:49 +00:00
parent 5c563f98b8
commit 651c1abfb7
3 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// run-pass
pub trait Foo<T> {
fn foo(self) -> T;
}
impl<'a, T> Foo<T> for &'a str where &'a str: Into<T> {
fn foo(self) -> T {
panic!();
}
}
fn main() {}

View File

@ -0,0 +1,21 @@
// run-pass
pub struct Bar<T> {
items: Vec<&'static str>,
inner: T,
}
pub trait IntoBar<T> {
fn into_bar(self) -> Bar<T>;
}
impl<'a, T> IntoBar<T> for &'a str where &'a str: Into<T> {
fn into_bar(self) -> Bar<T> {
Bar {
items: Vec::new(),
inner: self.into(),
}
}
}
fn main() {}

View File

@ -0,0 +1,25 @@
// run-pass
pub struct Item {
_inner: &'static str,
}
pub struct Bar<T> {
items: Vec<Item>,
inner: T,
}
pub trait IntoBar<T> {
fn into_bar(self) -> Bar<T>;
}
impl<'a, T> IntoBar<T> for &'a str where &'a str: Into<T> {
fn into_bar(self) -> Bar<T> {
Bar {
items: Vec::new(),
inner: self.into(),
}
}
}
fn main() {}