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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
/* 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/. */
#[rustfmt::skip]
pub mod unrooted_must_root {
/**
```
#![feature(plugin, register_tool)]
#![plugin(script_plugins)]
#![register_tool(unrooted_must_root_lint)]
#[unrooted_must_root_lint::must_root] struct Foo(i32);
#[unrooted_must_root_lint::must_root] struct Bar(Foo);
fn foo1(_: &Foo) {}
fn foo2(_: &()) -> &Foo { unimplemented!() }
fn main() {}
```
*/
pub fn ok() {}
/**
```compile_fail
#![feature(plugin, register_tool)]
#![plugin(script_plugins)]
#![register_tool(unrooted_must_root_lint)]
#[unrooted_must_root_lint::must_root] struct Foo(i32);
struct Bar(Foo);
fn main() {}
```
*/
pub fn struct_field() {}
/**
```compile_fail
#![feature(plugin, register_tool)]
#![plugin(script_plugins)]
#![register_tool(unrooted_must_root_lint)]
#[unrooted_must_root_lint::must_root] struct Foo(i32);
fn foo1(_: Foo) {}
fn main() {}
```
*/
pub fn parameter() {}
/**
```compile_fail
#![feature(plugin, register_tool)]
#![plugin(script_plugins)]
#![register_tool(unrooted_must_root_lint)]
#[unrooted_must_root_lint::must_root] struct Foo(i32);
fn foo2() -> Foo { unimplemented!() }
fn main() {}
```
*/
pub fn return_type() {}
}
#[rustfmt::skip]
pub mod trace_in_no_trace_lint {
/// Fake jstraceable
pub trait JSTraceable {}
impl JSTraceable for i32 {}
/**
```
#![allow(deprecated)]
#![feature(plugin, register_tool)]
#![plugin(script_plugins)]
#![register_tool(trace_in_no_trace_lint)]
use script_plugins_tests::trace_in_no_trace_lint::JSTraceable;
#[trace_in_no_trace_lint::must_not_have_traceable] struct NoTrace<T>(T);
struct Bar;
struct Foo(NoTrace<Bar>);
fn main() {}
```
*/
pub fn ok() {}
/**
```compile_fail
#![allow(deprecated)]
#![feature(plugin, register_tool)]
#![plugin(script_plugins)]
#![register_tool(trace_in_no_trace_lint)]
use script_plugins_tests::trace_in_no_trace_lint::JSTraceable;
#[trace_in_no_trace_lint::must_not_have_traceable] struct NoTrace<T>(T);
struct Bar;
impl JSTraceable for Bar {}
struct Foo(NoTrace<Bar>);
fn main() {}
```
*/
pub fn works() {}
/**
```
#![allow(deprecated)]
#![feature(plugin, register_tool)]
#![plugin(script_plugins)]
#![register_tool(trace_in_no_trace_lint)]
use script_plugins_tests::trace_in_no_trace_lint::JSTraceable;
// second generic argument must not be traceable
#[trace_in_no_trace_lint::must_not_have_traceable(1)]
struct NoTraceComposable<Traceable, NoTraceable> {
t: Traceable,
n: NoTraceable,
}
// this is ok u32 is not traceable
struct Foo(NoTraceComposable<i32, u32>);
fn main() {}
```
*/
pub fn composable_ok() {}
/**
```
#![allow(deprecated)]
#![feature(plugin, register_tool)]
#![plugin(script_plugins)]
#![register_tool(trace_in_no_trace_lint)]
use script_plugins_tests::trace_in_no_trace_lint::JSTraceable;
// second generic argument must not be traceable
#[trace_in_no_trace_lint::must_not_have_traceable(1)]
struct NoTraceComposable<Traceable, NoTraceable> {
t: Traceable,
n: NoTraceable,
}
// this is not ok i32 is traceable
struct Foo(NoTraceComposable<u32, i32>);
fn main() {}
```
*/
pub fn composable_works() {}
}
|