blob: 4cbe682b46f736d987f8c49baedad2560d708f6e [file] [log] [blame]
// check-pass
#![feature(return_position_impl_trait_in_trait)]
#![allow(incomplete_features)]
use std::fmt::Display;
trait Foo {
fn bar(&self) -> impl Display;
}
impl Foo for i32 {
fn bar(&self) -> i32 {
*self
}
}
impl Foo for &'static str {
fn bar(&self) -> &'static str {
*self
}
}
struct Yay;
impl Foo for Yay {
fn bar(&self) -> String {
String::from(":^)")
}
}
fn foo_generically<T: Foo>(t: T) {
println!("{}", t.bar());
}
fn main() {
println!("{}", "Hello, world.".bar());
println!("The answer is {}!", 42.bar());
foo_generically(Yay);
}