2020-01-30 00:18:54 +01:00
|
|
|
error: functions in `extern` blocks cannot have qualifiers
|
2024-04-03 02:43:54 +02:00
|
|
|
--> $DIR/no-const-fn-in-extern-block.rs:2:5
|
2019-09-29 19:22:18 -04:00
|
|
|
|
|
2020-09-01 17:12:52 -04:00
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
2019-09-29 19:22:18 -04:00
|
|
|
LL | const fn foo();
|
2024-04-03 02:43:54 +02:00
|
|
|
| ^^^^^ help: remove this qualifier
|
2019-09-29 19:22:18 -04:00
|
|
|
|
2020-01-30 00:18:54 +01:00
|
|
|
error: functions in `extern` blocks cannot have qualifiers
|
2024-04-03 02:43:54 +02:00
|
|
|
--> $DIR/no-const-fn-in-extern-block.rs:4:11
|
2019-09-29 19:22:18 -04:00
|
|
|
|
|
2020-09-01 17:12:52 -04:00
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
2020-01-30 00:18:54 +01:00
|
|
|
...
|
2019-09-29 19:22:18 -04:00
|
|
|
LL | const unsafe fn bar();
|
2024-04-03 02:43:54 +02:00
|
|
|
| ^^^^^^ help: remove this qualifier
|
|
|
|
|
|
|
|
error: functions in `extern` blocks cannot have qualifiers
|
|
|
|
--> $DIR/no-const-fn-in-extern-block.rs:4:5
|
2020-11-15 15:34:51 -06:00
|
|
|
|
|
2024-04-03 02:43:54 +02:00
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
|
|
|
...
|
|
|
|
LL | const unsafe fn bar();
|
|
|
|
| ^^^^^ help: remove this qualifier
|
2019-09-29 19:22:18 -04:00
|
|
|
|
2024-04-03 02:43:54 +02:00
|
|
|
error: aborting due to 3 previous errors
|
2019-09-29 19:22:18 -04:00
|
|
|
|