smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / Foreach.java
blobdd9dd91aa99d9e23e9d7f2e846299ffbcec8bda4
1 import java.util.List;
2 class Foreach {
3 void foo (Foreach e) {
4 for (String s : e.<caret>) {}
7 List<? extends String> f () {
8 return null;