summaryrefslogtreecommitdiffstats
path: root/src/test/ui/chalkify/type_inference.rs
blob: 369777a7904af85e2e74fbfdc3363fe113003173 (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
// compile-flags: -Z chalk

trait Foo { }
impl Foo for i32 { }

trait Bar { }
impl Bar for i32 { }
impl Bar for u32 { }

fn only_foo<T: Foo>(_x: T) { }

fn only_bar<T: Bar>(_x: T) { }

fn main() {
    let x = 5.0;

    // The only type which implements `Foo` is `i32`, so the chalk trait solver
    // is expecting a variable of type `i32`. This behavior differs from the
    // old-style trait solver. I guess this will change, that's why I'm
    // adding that test.
    // FIXME(chalk): order of these two errors is non-deterministic,
    // so let's just hide one for now
    //only_foo(x); // ERROR the trait bound `f64: Foo` is not satisfied

    // Here we have two solutions so we get back the behavior of the old-style
    // trait solver.
    only_bar(x); //~ ERROR the trait bound `{float}: Bar` is not satisfied
}