You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Complex.java 157B

12345678910111213
  1. // Class contains everything, for delegate comparing..
  2. public class Complex {
  3. int field1;
  4. String field2;
  5. Foo[] field3;
  6. static class Foo {
  7. }
  8. }