summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/borrow_box.stderr
blob: b5db691f89f3936848d9856ef287690513816a15 (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
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
  --> $DIR/borrow_box.rs:19:14
   |
LL |     let foo: &Box<bool>;
   |              ^^^^^^^^^^ help: try: `&bool`
   |
note: the lint level is defined here
  --> $DIR/borrow_box.rs:1:9
   |
LL | #![deny(clippy::borrowed_box)]
   |         ^^^^^^^^^^^^^^^^^^^^

error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
  --> $DIR/borrow_box.rs:23:10
   |
LL |     foo: &'a Box<bool>,
   |          ^^^^^^^^^^^^^ help: try: `&'a bool`

error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
  --> $DIR/borrow_box.rs:27:17
   |
LL |     fn test4(a: &Box<bool>);
   |                 ^^^^^^^^^^ help: try: `&bool`

error: aborting due to 3 previous errors