blob: f8a5959edd52ec37bc2cf77c7adf7152cd726147 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* { dg-output "S::f\r*\nT1::f\r*\nT2::f\r*\n" } */
extern "C" {
fn printf(s: *const i8, ...);
}
#[lang = "sized"]
pub trait Sized {}
struct S;
impl S {
fn f() {
unsafe {
let a = "S::f\n\0";
let b = a as *const str;
let c = b as *const i8;
printf(c);
}
}
}
trait T1 {
fn f() {
unsafe {
let a = "T1::f\n\0";
let b = a as *const str;
let c = b as *const i8;
printf(c);
}
}
}
impl T1 for S {}
trait T2 {
fn f() {
unsafe {
let a = "T2::f\n\0";
let b = a as *const str;
let c = b as *const i8;
printf(c);
}
}
}
impl T2 for S {}
fn main() -> i32 {
S::f();
<S as T1>::f();
<S as T2>::f();
0
}
|