about summary refs log tree commit diff
path: root/tests/ui/editions/unsafe-attr-edition-span.e2024.stderr
blob: 28871a1cce4fea95d0d7a73d64b30c199e05df60 (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
error: unsafe attribute used without unsafe
  --> $DIR/unsafe-attr-edition-span.rs:21:3
   |
LL | #[no_mangle]
   |   ^^^^^^^^^ usage of unsafe attribute
   |
help: wrap the attribute in `unsafe(...)`
   |
LL | #[unsafe(no_mangle)]
   |   +++++++         +

error: unsafe attribute used without unsafe
  --> $DIR/unsafe-attr-edition-span.rs:25:7
   |
LL |     #[no_mangle]
   |       ^^^^^^^^^ usage of unsafe attribute
   |
help: wrap the attribute in `unsafe(...)`
   |
LL |     #[unsafe(no_mangle)]
   |       +++++++         +

error: aborting due to 2 previous errors