mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
26 lines
384 B
Rust
26 lines
384 B
Rust
//@ check-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() {}
|