sp-03/test-input/Mini.java

10 lines
139 B
Java
Raw Normal View History

2023-10-09 07:08:58 +00:00
// A minimal class, with one "method" (the constructor)
public class Mini {
public Mini() {
super();
return;
}
}