Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Documentation change
  • Loading branch information
eugeneepshteyn committed Jul 16, 2025
commit 103af162b881d2f39f404d6546e11734b0feb795
15 changes: 12 additions & 3 deletions flang/docs/Extensions.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!--===- docs/Extensions.md
<!--===- docs/Extensions.md

Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
See https://llvm.org/LICENSE.txt for license information.
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

-->

# Fortran Extensions supported by Flang
Expand Down Expand Up @@ -170,6 +170,15 @@ end
In the case of `DEFERRED` bindings in an `ABSTRACT` derived type,
however, overrides are necessary, so they are permitted for inaccessible
bindings with an optional warning.
* Main program name is allowed to be the same as the other symbols used
in the main program, for example:
Comment thread
eugeneepshteyn marked this conversation as resolved.
```
module m
end
program m
use m
end
```

## Extensions, deletions, and legacy features supported by default

Expand Down
Loading