parameter popup: escape for annotation methods (IDEA-113971)

This commit is contained in:
anna
2013-09-25 10:29:41 +02:00
parent f6537137a0
commit 8913712ee6
3 changed files with 42 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
import java.util.List;
@interface PrepareForTest {
Class<List<String[]>> value();
}
abstract class A implements List<String>{}
@PrepareForTest({A<caret>.class})
class Main {}