From ec17209135c4c59f4c42f37e46231d32f0a5dd63 Mon Sep 17 00:00:00 2001 From: Jerry Ling Date: Tue, 31 May 2022 19:16:25 -0400 Subject: [PATCH] note `@inline` inside body usage --- NEWS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 0e8aa7190348d..a3ae8fe37e40b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -11,8 +11,8 @@ New language features e.g. `[;;;]` creates a 0×0×0 `Array` ([#41618]). * `try`-blocks can now optionally have an `else`-block which is executed right after the main body only if no errors were thrown ([#42211]). -* `@inline` and `@noinline` annotations can now be placed within a function body ([#41312]). -* `@inline` and `@noinline` annotations can now be applied to a function call site or block +* `@inline` and `@noinline` can now be placed within a function body, allowing one to annotate anonymous function ([#41312]). +* `@inline` and `@noinline` can now be applied to a function at callsite or block to enforce the involved function calls to be (or not to be) inlined ([#41328]). * `∀`, `∃`, and `∄` are now allowed as identifier characters ([#42314]). * Support for Unicode 14.0.0 ([#43443]).