blob: 726d9677f11f5c8f32f4c15e19e4b1dd9dc7f8ff (
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
|
#[lang = "sized"]
pub trait Sized {}
mod core {
mod ops {
#[lang = "add"]
pub trait Add<Rhs = Self> {
type Output;
fn add(self, rhs: Rhs) -> Self::Output;
}
}
}
impl core::ops::Add for f32 {
type Output = f32;
fn add(self, rhs: Self) -> Self::Output {
self + rhs
}
}
pub fn foo<T: core::ops::Add<Output = i32>>(a: T) -> i32 {
a + a
}
pub fn main() {
foo(123f32);
// { dg-error "type mismatch, expected .i32. but got .f32." "" { target *-*-* } .-1 }
// { dg-error "bounds not satisfied for f32 .Add. is not satisfied" "" { target *-*-* } .-2 }
}
|