summaryrefslogtreecommitdiffstats
path: root/servo/tests/unit/malloc_size_of/lib.rs
blob: 1280d0a8f2120471dc2340f414b78ffe1412a146 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */

/**
```
extern crate malloc_size_of;
extern crate servo_arc;

fn sizeable<T: malloc_size_of::MallocSizeOf>() {}
fn shallow_sizeable<T: malloc_size_of::MallocShallowSizeOf>() {}
fn cloneable<T: Clone>() {}

fn main() {
    cloneable::<servo_arc::Arc<i32>>();
    cloneable::<std::sync::Arc<i32>>();
    cloneable::<std::rc::Rc<i32>>();
}
```
*/
pub fn imports_ok() {}

pub mod does_not_impl_malloc_size_of {
    /**
    ```compile_fail,E0277
    extern crate malloc_size_of;
    extern crate servo_arc;

    fn sizeable<T: malloc_size_of::MallocSizeOf>() {}

    fn main() {
        sizeable::<servo_arc::Arc<i32>>();
    }
    ```
    */
    pub fn servo_arc() {}

    /**
    ```compile_fail,E0277
    extern crate malloc_size_of;

    fn sizeable<T: malloc_size_of::MallocSizeOf>() {}

    fn main() {
        sizeable::<std::sync::Arc<i32>>();
    }
    ```
    */
    pub fn std_arc() {}

    /**
    ```compile_fail,E0277
    extern crate malloc_size_of;

    fn sizeable<T: malloc_size_of::MallocSizeOf>() {}

    fn main() {
        sizeable::<std::rc::Rc<i32>>();
    }
    ```
    */
    pub fn rc() {}
}

pub mod does_not_impl_malloc_shallow_size_of {
    /**
    ```compile_fail,E0277
    extern crate malloc_size_of;
    extern crate servo_arc;

    fn shallow_sizeable<T: malloc_size_of::MallocShallowSizeOf>() {}

    fn main() {
        shallow_sizeable::<servo_arc::Arc<i32>>();
    }
    ```
    */
    pub fn servo_arc() {}

    /**
    ```compile_fail,E0277
    extern crate malloc_size_of;

    fn shallow_sizeable<T: malloc_size_of::MallocShallowSizeOf>() {}

    fn main() {
        shallow_sizeable::<std::sync::Arc<i32>>();
    }
    ```
    */
    pub fn std_arc() {}

    /**
    ```compile_fail,E0277
    extern crate malloc_size_of;

    fn shallow_sizeable<T: malloc_size_of::MallocShallowSizeOf>() {}

    fn main() {
        shallow_sizeable::<std::rc::Rc<i32>>();
    }
    ```
    */
    pub fn rc() {}
}