Files
openide/java/java-tests/testData/codeInsight/folding/MultilineComments.java
Egor Zhdan 39d2d77155 Cleanup: NotNull/Nullable
GitOrigin-RevId: b8e892f32ea84c2115973155dba7127b892cc36e
2019-06-13 03:14:35 +03:00

44 lines
849 B
Java

<fold text='/*...*/'>/*
outer class comment
*/</fold>
class Test {
<fold text='/*...*/'>/*
dangling multiline commnent
*/</fold>
<fold text='/*...*/'>/*
field comment
*/</fold>
int field;
<fold text='/*...*/'>/*
method comment
*/</fold>
void foo() <fold text='{...}'>{
<fold text='/*...*/'>/*
method var comment
*/</fold>
final int i = 42;
}</fold>
<fold text='/*...*/'>/*
inner class comment
*/</fold>
class Inner <fold text='{...}'>{
<fold text='/*...*/'>/*
inner class method comment
*/</fold>
void foo() <fold text='{...}'>{
class MethodInner <fold text='{...}'>{
<fold text='/*...*/'>/*
method inside class declared in method comment
*/</fold>
void foo() <fold text='{}'>{
}</fold>
}</fold>
}</fold>
}</fold>
}