aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr108602.java
blob: 3ce6f4b1bd5a4f89abbb2b3df848b42fb831db10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * GenericsError.java
 *
 * Created on September 1, 2005, 9:36 AM
 *
 */

import java.util.Collection;

interface GenericsError {
  public Collection<String> test(
      boolean arg1,
      boolean arg2,
      Object arg3) ;
}


/*
 * GenericsErrorImpl.java
 *
 * Created on September 1, 2005, 9:37 AM
 *
 */

class GenericsErrorImpl implements GenericsError {

  public Collection<String> test(
      boolean arg1,
      boolean arg2,
      Object arg3)  { return null; }
 
}

aspect ForceUnpacking {
	
	before() : execution(* *(..)) {}
	
}