Community
Participate
Working Groups
Build Identifier: I20100520-1744 if you write this kind of fortran declaration: character * 10 Var1, Var2*5 when you apply the Standarize Statemens Refactoring you obtain character *10 :: Var1 character *10 :: var2*5 it is an error because var2*5 should be standarize as : character *5 :: var2 The refactoring not preserve the behavior of the code. Reproducible: Always