Files
openide/java/java-tests/testData/codeInsight/template/postfix/templates/twr/simple.java
T

12 lines
168 B
Java

import java.lang.AutoCloseable
public class Foo {
void m() {
getStream().twr<caret>
}
AutoCloseable getStream()
{
return null;
}
}