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.

Concrete.java 95B

12345
  1. public aspect Concrete extends Abstract<Number> {
  2. public Number getT() {
  3. return 5;
  4. }
  5. }