summaryrefslogtreecommitdiffstats
path: root/tests/ui/wf/wf-in-fn-type-implicit.rs
blob: c5ff92c88754af80283fe37ac9d04d30fb1e6669 (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
// check-pass
// known-bug: #104005

// Should fail. Function type parameters with implicit type annotations are not
// checked for well-formedness, which allows incorrect borrowing.

// In contrast, user annotations are always checked for well-formedness, and the
// commented code below is correctly rejected by the borrow checker.

use std::fmt::Display;

trait Displayable {
    fn display(self) -> Box<dyn Display>;
}

impl<T: Display> Displayable for (T, Option<&'static T>) {
    fn display(self) -> Box<dyn Display> {
        Box::new(self.0)
    }
}

fn extend_lt<T, U>(val: T) -> Box<dyn Display>
where
    (T, Option<U>): Displayable,
{
    Displayable::display((val, None))
}

fn main() {
    // *incorrectly* compiles
    let val = extend_lt(&String::from("blah blah blah"));
    println!("{}", val);

    // *correctly* fails to compile
    // let val = extend_lt::<_, &_>(&String::from("blah blah blah"));
    // println!("{}", val);
}