diff options
Diffstat (limited to 'tests/bugs166/pr290087/BeanChild.java')
-rw-r--r-- | tests/bugs166/pr290087/BeanChild.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs166/pr290087/BeanChild.java b/tests/bugs166/pr290087/BeanChild.java new file mode 100644 index 000000000..321abb955 --- /dev/null +++ b/tests/bugs166/pr290087/BeanChild.java @@ -0,0 +1,9 @@ +public class BeanChild extends GenericParent<Bean> { + public BeanChild(Class<? extends Bean> c) { + super(c); + } + public static void main(String []argv) { + new BeanChild(null); + } +} + |