blob: d5fd5466fe9221257d50d1d2bc40960e73bce9bb (
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
38
39
40
|
/* { dg-output "Bar::A = 456\r*\n<Foo as Bar>::A = 456\r*\n" } */
extern "C" {
fn printf(s: *const i8, ...);
}
#[lang = "sized"]
pub trait Sized {}
trait Foo {
const A: i32 = 123;
}
struct Bar;
impl Foo for Bar {
const A: i32 = 456;
}
fn main() -> i32 {
let a;
a = Bar::A;
unsafe {
let _a = "Bar::A = %i\n\0";
let _b = _a as *const str;
let _c = _b as *const i8;
printf(_c, a);
}
let b;
b = <Bar as Foo>::A;
unsafe {
let _a = "<Foo as Bar>::A = %i\n\0";
let _b = _a as *const str;
let _c = _b as *const i8;
printf(_c, b);
}
0
}
|