summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/success.rs
blob: 0e69e0490c776aece731e301d6b812726f433e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// 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);
}