------- Comment #9 from dominiq at lps dot ens dot fr 2007-05-29 14:25 ------- > This gives still a warning with g95 and NAG f95; > NAG outputs "Abbbbbb", > ifort/g95/sunf95 show "bbbbbbbbbbbbbbbbbbbb".
Since a(:) is not initialized, the output can be anything. with a = .false. a(1) = .true. I get 'Abbbbbbbbbbbbbbbbbbb' with both xlf and g95, otherwise the outputs differ. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31610