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