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.

ChoiceGenerics1.java 233B

1234567891011121314
  1. import java.util.*;
  2. public class ChoiceGenerics1 {
  3. public static void main(String []argv) {
  4. new Keys<Integer>().choice = 42;
  5. }
  6. }
  7. aspect X {
  8. public static class ChoiceGenerics1.Keys<N> {
  9. public N choice = null;
  10. }
  11. }