Unverified Commit 1220edc6 authored by vdonaldson's avatar vdonaldson Committed by GitHub
Browse files

[flang] module namelist IO with renaming (#75264)

The test:
```
  module mmm
    real rrr
    namelist /aaa/ rrr
  end

    use mmm, bbb => aaa
    rrr = 3.
    write(*,bbb)
  end
```
Should output:  &AAA RRR= 3./

not:            &BBB RRR= 3./
parent ec41462d
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment