We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
clippy
1 parent 3a45d67 commit 1e7214bCopy full SHA for 1e7214b
wayland-server/src/global.rs
@@ -162,6 +162,7 @@ mod tests {
162
GlobalDispatch, New,
163
};
164
165
+ #[allow(dead_code)]
166
struct DelegateToMe;
167
168
impl<D> Dispatch<wl_output::WlOutput, (), D> for DelegateToMe
@@ -196,6 +197,7 @@ mod tests {
196
197
}
198
199
200
201
struct ExampleApp {
202
delegate: DelegateToMe,
203
@@ -217,6 +219,7 @@ mod tests {
217
219
218
220
221
222
223
struct DelegateToMe<A>(A);
224
225
impl<A, D> Dispatch<wl_output::WlOutput, (), D> for DelegateToMe<A>
@@ -253,6 +256,7 @@ mod tests {
253
256
254
257
255
258
259
260
struct ExampleApp<A> {
261
delegate: DelegateToMe<A>,
262
0 commit comments