Files
Bartek Paciaandintellij-monorepo-bot ca5906a4f7 [ByteCodeViewer] Improve and simplify testing
Make all tests have two variants: with and without debug info.

Also, move bytecode fixtures out of BytecodeLineMappingTest because it adds too much noise there.
Move it to the newly created testData directory instead.

GitOrigin-RevId: 1b44b118d470ace068774d9714eafc2704119e86
2025-06-25 08:44:04 +00:00

8 lines
126 B
Java

package simple1;
public class Main {
public static void main(String[] args) {
System.out.println("hello world");
}
}