blob: 04e64c99599b8d5300fef61ebdc9c2780381b2ab [file] [log] [blame]
import java.util.List;
public class LiveTemplateTest {
void one() {
List<A.B<String>> list;
for (A.B<String> stringB : <selection>list</selection><caret>) {
}
}
}
class A {
static interface B<T> {}
}