blob: 35e33fbc25c2e6670939121817c3a66dcf2fb021 (
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
56
57
58
59
60
61
62
|
#![feature(intrinsics)]
#[lang = "sized"]
trait Sized {}
#[lang = "copy"]
trait Copy {}
#[lang = "structural_peq"]
trait StructuralPartialEq {}
#[lang = "eq"]
pub trait PartialEq<Rhs: ?Sized = Self> {
/// This method tests for `self` and `other` values to be equal, and is used
/// by `==`.
#[must_use]
#[stable(feature = "rust1", since = "1.0.0")]
fn eq(&self, other: &Rhs) -> bool;
/// This method tests for `!=`.
#[inline]
#[must_use]
#[stable(feature = "rust1", since = "1.0.0")]
fn ne(&self, other: &Rhs) -> bool {
!self.eq(other)
}
}
#[derive(PartialEq, Copy)] // { dg-warning "unused name" }
struct Foo;
#[derive(PartialEq)]
struct Bar(Foo);
#[derive(PartialEq)]
struct Baz { _inner: Foo }
extern "C" {
fn puts(s: *const i8);
}
fn print(b: bool) {
if b {
unsafe { puts("true" as *const str as *const i8) }
} else {
unsafe { puts("false" as *const str as *const i8) }
}
}
fn main() -> i32 {
let x = Foo;
let b1 = x == Foo;
let b2 = Bar(x) != Bar(Foo);
let b3 = Baz { _inner: Foo } != Baz { _inner: x };
print(b1);
print(b2);
print(b3);
0
}
|