ソースを参照

171952: testcode

tags/Root_extensions
aclement 17年前
コミット
87e59db578
2個のファイルの変更16行の追加0行の削除
  1. 6
    0
      tests/bugs160/pr171952/Foo.java
  2. 10
    0
      tests/bugs160/pr171952/FooAspect.java

+ 6
- 0
tests/bugs160/pr171952/Foo.java ファイルの表示

@@ -0,0 +1,6 @@
import java.util.List;

public interface Foo {

<T> List<T> createList();
}

+ 10
- 0
tests/bugs160/pr171952/FooAspect.java ファイルの表示

@@ -0,0 +1,10 @@
import java.util.ArrayList;
import java.util.List;

public aspect FooAspect {


public <T> List<T> Foo.createList() {
return new ArrayList<T>();
}
}

読み込み中…
キャンセル
保存