Community
Participate
Working Groups
---- Xtend --- class bar { static int bar = 1 int i = bar } ------------- compiles to ----- Java ------ public class bar { private static int bar = 1; private int i = bar.bar; } ----------------- In " private int i = bar.bar;" I expect "somepackage.bar.bar" instead of "bar.bar". This is a compile error since the name of local member field shadows the name of the class.
not M4