Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

PR98320.aj 501B

123456789101112131415161718
  1. import java.util.*;
  2. class C {
  3. Set<String> simple_local;
  4. Set<Set<String>> nested_local;
  5. }
  6. aspect Inter_Type_Injector {
  7. Set<String> C.simple_intertype;
  8. Set<Set<String>> C.nested_intertype;
  9. public void test() {
  10. Set<String> simple_local = new C().simple_local; // works
  11. Set<String> simple_intertype = new C().simple_intertype; // works
  12. Set<Set<String>> nested_local = new C().nested_local; // works
  13. Set<Set<String>> nested_intertype = new C().nested_intertype; // fails
  14. }
  15. }