summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0199.stderr
blob: 99d808c0d4b1e115947acdbf76c2e9f55f23b19c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0199]: implementing the trait `Bar` is not unsafe
  --> $DIR/E0199.rs:6:1
   |
LL | unsafe impl Bar for Foo { }
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: remove `unsafe` from this trait implementation
   |
LL - unsafe impl Bar for Foo { }
LL + impl Bar for Foo { }
   |

error: aborting due to previous error

For more information about this error, try `rustc --explain E0199`.