Files
openide/java/java-tests/testData/codeInsight/enterAction/BinaryExpressionAsParameter.java
Dmitry Jemerov 87c899d87e Move Java-specific part of EnterActionTest to java-tests module
GitOrigin-RevId: 4c83c726cb3cfb95920054b04737ff0f1a88be40
2022-04-25 11:40:41 +00:00

13 lines
252 B
Java

class Foo {
void foo(){
public void testDocComment2() throws Exception{
doTextTest("class Test {\n" +
"/**\n" +
"/**\n" +
"/**\n" +
"/**\n<caret>" +
"}");
}
}
}