O forEach para a coleção não está funcionando javaColecoes.getAlunos().forEach(aluno -> { System.out.println(aluno); });
O erro dado é o seguinte:
Exception in thread "main" java.lang.Error: Unresolved compilation problems: aluno cannot be resolved to a variable Syntax error on tokens, delete these tokens println cannot be resolved or is not a field Syntax error on token(s), misplaced construct(s) Syntax error, insert ";" to complete Statement
at br.com.alura.TestaCursoComAluno.main(TestaCursoComAluno.java:23)
Alguma solução?