public class TestaClasse {
public static void main(String[] args) {
// falta a declaração da saída
PrintStream saida = System.out;
saida.println("ola");
}
}
Exception in thread "main" java.lang.Error: Unresolved compilation problem: PrintStream cannot be resolved to a type
at TestaClasse.main(TestaClasse.java:7)