Files
openide/java/java-tests/testData/psi/autodetect/notIndentedComment.java
Yaroslav Lepenkin 97ef4a1412 [AutoDetect] while detecting indent, skip line comments (IDEA-132279).
Also was extracted base class for indent detection tests and created java specific one.
2014-11-14 10:46:27 +02:00

24 lines
407 B
Java

import java.lang.System;
public class MyOwn {
public void run() {
int a = 2;
// my super comment
int c = 3;
Runnable a = null;
System.out.println("Hello!");
c += 3;
int re = 12;
re += 1;
c = re + c;
int q;
q = c * re + c;
c = q * 11 - 167;
System.out.println("Testing!");
System.out.println("Hello!");
c += 3;
}
}