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.

pr112783.aj 141B

12345678910111213
  1. public aspect pr112783 {
  2. public NotYetABean.new() {
  3. this(new Long(1));
  4. }
  5. }
  6. class NotYetABean {
  7. public NotYetABean(Long l) {
  8. }
  9. }