https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61349
Bug ID: 61349 Summary: Erro java 28 Product: gcc Version: lto Status: UNCONFIRMED Severity: normal Priority: P3 Component: java Assignee: unassigned at gcc dot gnu.org Reporter: henricky.mestre at hotmail dot com /** * * @author henri_000 */ public class Aluno{ private String nome; private String matricula; private String endereco; /** * @return the nome */ public String getNome() { return nome; } /** * @param nome the nome to set */ public void setNome(String nome) { this.nome = nome; } /** * @return the matricula */ public int getMatricula() { return matricula; } /** * @param matricula the matricula to set */ public void setMatricula(int matricula) { this.matricula = matricula; } /** * @return the endereco */ public String getEndereco() { return endereco; } /** * @param endereco the endereco to set */ public void setEndereco(String endereco) { this.endereco = endereco; } }