rust/tests/ui/impl-trait/in-trait/success.rs

43 lines
712 B
Rust

// check-pass
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
// revisions: current next
#![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);
}