/* * Static ITD of a field onto a generic type that utilises * a type variable from the target generic */ import java.util.*; class MathUtils { } public class FieldITDOnGenericType { public static void main(String[] argv) { MathUtils mu = new MathUtils(); mu.n=42; System.err.println(">"+mu.n); } } aspect X { E MathUtils.n; }