2020-01-30 12:02:06 +00:00
|
|
|
error: functions cannot be both `const` and `async`
|
2021-05-07 16:56:16 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:12:5
|
2020-01-30 12:02:06 +00:00
|
|
|
|
|
2022-02-14 16:10:22 +00:00
|
|
|
LL | const async unsafe extern "C" fn ff5() {}
|
2020-03-06 18:55:21 +00:00
|
|
|
| ^^^^^-^^^^^------------------------------
|
2020-01-30 12:02:06 +00:00
|
|
|
| | |
|
|
|
|
| | `async` because of this
|
|
|
|
| `const` because of this
|
|
|
|
|
2020-02-11 07:19:21 +00:00
|
|
|
error[E0379]: functions in traits cannot be declared const
|
2022-11-24 16:58:32 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:18:9
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
|
|
|
LL | const fn ft3();
|
2024-01-01 23:57:30 +00:00
|
|
|
| ^^^^^-
|
|
|
|
| |
|
|
|
|
| functions in traits cannot be const
|
|
|
|
| help: remove the `const`
|
2020-01-29 23:18:54 +00:00
|
|
|
|
2020-02-11 07:19:21 +00:00
|
|
|
error[E0379]: functions in traits cannot be declared const
|
2022-11-24 16:58:32 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:20:9
|
2020-01-30 07:31:31 +00:00
|
|
|
|
|
|
|
|
LL | const async unsafe extern "C" fn ft5();
|
2024-01-01 23:57:30 +00:00
|
|
|
| ^^^^^-
|
|
|
|
| |
|
|
|
|
| functions in traits cannot be const
|
|
|
|
| help: remove the `const`
|
2020-01-30 07:31:31 +00:00
|
|
|
|
2020-01-30 12:02:06 +00:00
|
|
|
error: functions cannot be both `const` and `async`
|
2022-11-24 16:58:32 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:20:9
|
2020-01-30 12:02:06 +00:00
|
|
|
|
|
|
|
|
LL | const async unsafe extern "C" fn ft5();
|
2020-03-06 18:55:21 +00:00
|
|
|
| ^^^^^-^^^^^----------------------------
|
2020-01-30 12:02:06 +00:00
|
|
|
| | |
|
|
|
|
| | `async` because of this
|
|
|
|
| `const` because of this
|
|
|
|
|
2024-01-01 23:26:50 +00:00
|
|
|
error[E0379]: functions in trait impls cannot be declared const
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:29:9
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
|
|
|
LL | const fn ft3() {}
|
2024-01-01 23:57:30 +00:00
|
|
|
| ^^^^^-
|
|
|
|
| |
|
|
|
|
| functions in trait impls cannot be const
|
|
|
|
| help: remove the `const`
|
2020-01-29 23:18:54 +00:00
|
|
|
|
2024-01-01 23:26:50 +00:00
|
|
|
error[E0379]: functions in trait impls cannot be declared const
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:31:9
|
2020-01-30 07:31:31 +00:00
|
|
|
|
|
|
|
|
LL | const async unsafe extern "C" fn ft5() {}
|
2024-01-01 23:57:30 +00:00
|
|
|
| ^^^^^-
|
|
|
|
| |
|
|
|
|
| functions in trait impls cannot be const
|
|
|
|
| help: remove the `const`
|
2020-01-30 07:31:31 +00:00
|
|
|
|
2020-01-30 12:02:06 +00:00
|
|
|
error: functions cannot be both `const` and `async`
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:31:9
|
2020-01-30 12:02:06 +00:00
|
|
|
|
|
|
|
|
LL | const async unsafe extern "C" fn ft5() {}
|
2020-03-06 18:55:21 +00:00
|
|
|
| ^^^^^-^^^^^------------------------------
|
2020-01-30 12:02:06 +00:00
|
|
|
| | |
|
|
|
|
| | `async` because of this
|
|
|
|
| `const` because of this
|
|
|
|
|
|
|
|
error: functions cannot be both `const` and `async`
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:41:9
|
2020-01-30 12:02:06 +00:00
|
|
|
|
|
|
|
|
LL | const async unsafe extern "C" fn fi5() {}
|
2020-03-06 18:55:21 +00:00
|
|
|
| ^^^^^-^^^^^------------------------------
|
2020-01-30 12:02:06 +00:00
|
|
|
| | |
|
|
|
|
| | `async` because of this
|
|
|
|
| `const` because of this
|
|
|
|
|
2020-01-29 23:18:54 +00:00
|
|
|
error: functions in `extern` blocks cannot have qualifiers
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:46:18
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
2020-09-01 21:12:52 +00:00
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
2020-01-29 23:18:54 +00:00
|
|
|
LL | async fn fe1();
|
2020-11-15 21:34:51 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: remove the qualifiers
|
|
|
|
|
|
|
|
|
LL | fn fe1();
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
|
|
error: functions in `extern` blocks cannot have qualifiers
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:47:19
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
2020-09-01 21:12:52 +00:00
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
2020-01-29 23:18:54 +00:00
|
|
|
LL | async fn fe1();
|
|
|
|
LL | unsafe fn fe2();
|
2020-11-15 21:34:51 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: remove the qualifiers
|
|
|
|
|
|
|
|
|
LL | fn fe2();
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
|
|
error: functions in `extern` blocks cannot have qualifiers
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:48:18
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
2020-09-01 21:12:52 +00:00
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
2020-01-29 23:18:54 +00:00
|
|
|
...
|
|
|
|
LL | const fn fe3();
|
2020-11-15 21:34:51 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: remove the qualifiers
|
|
|
|
|
|
|
|
|
LL | fn fe3();
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
|
|
error: functions in `extern` blocks cannot have qualifiers
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:49:23
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
2020-09-01 21:12:52 +00:00
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
2020-01-29 23:18:54 +00:00
|
|
|
...
|
|
|
|
LL | extern "C" fn fe4();
|
2020-11-15 21:34:51 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: remove the qualifiers
|
|
|
|
|
|
|
|
|
LL | fn fe4();
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
|
|
error: functions in `extern` blocks cannot have qualifiers
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:50:42
|
2020-01-29 23:18:54 +00:00
|
|
|
|
|
2020-09-01 21:12:52 +00:00
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
2020-01-29 23:18:54 +00:00
|
|
|
...
|
2020-01-30 07:31:31 +00:00
|
|
|
LL | const async unsafe extern "C" fn fe5();
|
2020-11-15 21:34:51 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: remove the qualifiers
|
|
|
|
|
|
|
|
|
LL | fn fe5();
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~
|
2020-01-29 23:18:54 +00:00
|
|
|
|
2020-01-30 12:02:06 +00:00
|
|
|
error: functions cannot be both `const` and `async`
|
2023-09-13 16:04:42 +00:00
|
|
|
--> $DIR/fn-header-semantic-fail.rs:50:9
|
2020-01-30 12:02:06 +00:00
|
|
|
|
|
|
|
|
LL | const async unsafe extern "C" fn fe5();
|
2020-03-06 18:55:21 +00:00
|
|
|
| ^^^^^-^^^^^----------------------------
|
2020-01-30 12:02:06 +00:00
|
|
|
| | |
|
|
|
|
| | `async` because of this
|
|
|
|
| `const` because of this
|
|
|
|
|
2023-09-13 16:04:42 +00:00
|
|
|
error: aborting due to 14 previous errors
|
2020-01-29 23:18:54 +00:00
|
|
|
|
2023-09-13 16:04:42 +00:00
|
|
|
For more information about this error, try `rustc --explain E0379`.
|