summary refs log tree commit diff
path: root/tests/ui/inline-const/pat-unsafe.stderr
blob: 59460271ac010f95a79bbf6b548496c038f993a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
warning: unnecessary `unsafe` block
  --> $DIR/pat-unsafe.rs:15:17
   |
LL |                 unsafe {}
   |                 ^^^^^^ unnecessary `unsafe` block
   |
note: the lint level is defined here
  --> $DIR/pat-unsafe.rs:3:9
   |
LL | #![warn(unused_unsafe)]
   |         ^^^^^^^^^^^^^

warning: unnecessary `unsafe` block
  --> $DIR/pat-unsafe.rs:22:17
   |
LL |                 unsafe {}
   |                 ^^^^^^ unnecessary `unsafe` block

warning: 2 warnings emitted