Skip to content

Commit

Permalink
fix link text
Browse files Browse the repository at this point in the history
  • Loading branch information
BillWagner committed Oct 2, 2022
1 parent 9cf2cb0 commit 3a4fc3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion standard/statements.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ A *local_function_declaration* may include one `async` ([§14.15](classes.md#141
A local function is declared at block scope, and that function may capture variables from the enclosing scope. It is a compile time error if a captured variables is read by the body of the local function if it is not definitely assigned before each call to the function. The compiler shall determine which variables are definitely assigned on returndefinite-assignment-rules-for-local-function).
A local function may be called from a lexical point prior to its definition. However, it is a compile-time error for the function to be declared lexically prior to the declaration of a variable used in the local function ([§7.7]).
A local function may be called from a lexical point prior to its definition. However, it is a compile-time error for the function to be declared lexically prior to the declaration of a variable used in the local function7.7).
It is a compile-time error for a local function to declare a parameter or local variable with the same name as one declared in the enclosing scope.
Expand Down

0 comments on commit 3a4fc3d

Please sign in to comment.