rust/tests/ui/rfcs/rfc-2396-target_feature-11/fn-ptr.thir.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
831 B
Plaintext
Raw Normal View History

2020-05-01 08:32:28 -05:00
error[E0308]: mismatched types
--> $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;
| ---- ^^^ cannot coerce functions with `#[target_feature]` to safe function pointers
| |
2020-05-01 08:32:28 -05:00
| expected due to this
|
= note: expected fn pointer `fn()`
found fn item `fn() {foo}`
= 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
help: consider casting to a fn pointer
|
LL | let foo: fn() = foo as fn();
| ~~~~~~~~~~~
2020-05-01 08:32:28 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.