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

17 lines
238 B
Java

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