1 2 3 4 5 6 7 8 9 10
import java.util.*; public aspect Bar { private List<String> Foo.l; private void Foo.foo() { l = new ArrayList<String>(); } }