#!/bin/sh # Change this to be the full path for this directory EXTRACTION=$HOME/aj-oopsla if [ "$JAVA_HOME" = "" ] then echo Please remember to manually set $JAVA_HOME to echo the location of your java installation fi export ASPECTJ_HOME=$EXTRACTION/aspectj export PATH=$ASPECTJ_HOME/bin:$PATH export CLASSPATH=.:$ASPECTJ_HOME/lib/aspectjrt.jar:$EXTRACTION/junit.jar erics2.java?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features169/itdInnerTypes/ChoiceGenerics2.java
blob: ba3fb2ec5f02d61054275d6e1472db5385547f73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.util.*;

public class ChoiceGenerics2 {
  public static void main(String []argv) {
    new Keys<Integer>().choice = "abc";
  }
}


aspect X {
  public static class ChoiceGenerics2.Keys<N> {
    public N choice = null;
  }
}