Using Ver 1.7.3.
If an internal enum has the same name, the formatter class name generated in advance collides.
It occurs in the following class.
namespace test {
public class test01 {
public enum hoge {
one,
two,
}
}
public class test02 {
public enum hoge {
one,
two,
}
}
}