http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56849
Tobias Burnus <burnus at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |burnus at gcc dot gnu.org --- Comment #2 from Tobias Burnus <burnus at gcc dot gnu.org> 2013-04-05 20:18:10 UTC --- Pilot error - I though I had tested that version, but seemingly I didn't. I encountered it with an ORDER= attribute - without ORDER= the warning is printed. integer :: x(2,2),y(4) y = reshape([1,2,3,4],[4]) x(:,1:1) = reshape(y(::2), [1,2], order=[1,2]) print *, y print *, x(:,1) end