sp-04/test-input/Mini.java

10 lines
139 B
Java
Raw Normal View History

2023-10-18 19:57:49 +00:00
// A minimal class, with one "method" (the constructor)
public class Mini {
public Mini() {
super();
return;
}
}