diff options
Diffstat (limited to 'tests/bugs1612/pr339974/City.java')
-rw-r--r-- | tests/bugs1612/pr339974/City.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs1612/pr339974/City.java b/tests/bugs1612/pr339974/City.java new file mode 100644 index 000000000..60ba5a15b --- /dev/null +++ b/tests/bugs1612/pr339974/City.java @@ -0,0 +1,7 @@ +public class City { + + private String name; + + private Country country; +} +class Country {} |