From e9a32f4af328bfe38e014ac8496ecc859499752d Mon Sep 17 00:00:00 2001 From: Folkert de Vries Date: Thu, 29 Aug 2024 19:11:07 +0200 Subject: [PATCH] stabilize `const_extern_fn` --- src/items/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/functions.md b/src/items/functions.md index ae698fba2..820fa4bd4 100644 --- a/src/items/functions.md +++ b/src/items/functions.md @@ -217,7 +217,7 @@ Functions qualified with the `const` keyword are [const functions], as are [tuple struct] and [tuple variant] constructors. _Const functions_ can be called from within [const contexts]. -Const functions may use the [`extern`] function qualifier, but only with the `"Rust"` and `"C"` ABIs. +Const functions may use the [`extern`] function qualifier. Const functions are not allowed to be [async](#async-functions).