summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/auxiliary/issue-11508.rs
blob: 16bfc65c2b576c283a6cd6bd8d8b1335c4a8649b (plain)
1
2
3
4
5
6
7
8
9
10
pub struct Closed01<F>(pub F);

pub trait Bar { fn new() -> Self; }

impl<T: Bar> Bar for Closed01<T> {
    fn new() -> Closed01<T> { Closed01(Bar::new()) }
}
impl Bar for f32 { fn new() -> f32 { 1.0 } }

pub fn random<T: Bar>() -> T { Bar::new() }