2020-05-01 08:32:28 -05:00
|
|
|
error[E0308]: mismatched types
|
2021-05-14 16:52:34 -05:00
|
|
|
--> $DIR/fn-ptr.rs:11:21
|
2020-05-01 08:32:28 -05:00
|
|
|
|
|
|
|
|
LL | #[target_feature(enable = "sse2")]
|
|
|
|
| ---------------------------------- `#[target_feature]` added here
|
|
|
|
...
|
|
|
|
LL | let foo: fn() = foo;
|
2022-12-11 01:49:07 -06:00
|
|
|
| ---- ^^^
|
|
|
|
| | |
|
|
|
|
| | cannot coerce functions with `#[target_feature]` to safe function pointers
|
|
|
|
| | help: consider casting to a fn pointer: `foo as fn()`
|
2020-05-01 08:32:28 -05:00
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
|
= note: expected fn pointer `fn()`
|
|
|
|
found fn item `fn() {foo}`
|
2022-12-11 01:49:07 -06:00
|
|
|
= note: fn items are distinct from fn pointers
|
2020-05-01 08:32:28 -05:00
|
|
|
= note: functions with `#[target_feature]` can only be coerced to `unsafe` function pointers
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|