summaryrefslogtreecommitdiffstats
path: root/src/test/ui/chalkify/chalk_initial_program.rs
blob: df25bad622b3d09e83d3d6090f176f5cf914e887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// compile-flags: -Z chalk

trait Foo { }

impl Foo for i32 { }

impl Foo for u32 { }

fn gimme<F: Foo>() { }

// Note: this also tests that `std::process::Termination` is implemented for `()`.
fn main() {
    gimme::<i32>();
    gimme::<u32>();
    gimme::<f32>(); //~ERROR the trait bound `f32: Foo` is not satisfied
}