summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/unused/must-use-box-from-raw.stderr
blob: 7769f09aa5203b3cebfb9d18f810f38e91ec0aff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
warning: unused return value of `Box::<T>::from_raw` that must be used
  --> $DIR/must-use-box-from-raw.rs:8:5
   |
LL |     Box::from_raw(ptr);
   |     ^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/must-use-box-from-raw.rs:5:9
   |
LL | #![warn(unused_must_use)]
   |         ^^^^^^^^^^^^^^^
   = note: call `drop(from_raw(ptr))` if you intend to drop the `Box`

warning: 1 warning emitted