about summary refs log tree commit diff
path: root/tests/ui/lint/unsafe_code/unsafe-extern-blocks.stderr
blob: 6d3b064da344fb0f645a601f177f283caa54dedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: usage of an `unsafe extern` block
  --> $DIR/unsafe-extern-blocks.rs:8:1
   |
LL | / unsafe extern "C" {
LL | |
LL | |     fn bar();
LL | | }
   | |_^
   |
note: the lint level is defined here
  --> $DIR/unsafe-extern-blocks.rs:1:9
   |
LL | #![deny(unsafe_code)]
   |         ^^^^^^^^^^^

error: aborting due to 1 previous error