Skip to content

Instantly share code, notes, and snippets.

@guaracyalima
Created November 24, 2019 21:48
Show Gist options
  • Save guaracyalima/7aaf539d1f09dc2be546b42b53edf33e to your computer and use it in GitHub Desktop.
Save guaracyalima/7aaf539d1f09dc2be546b42b53edf33e to your computer and use it in GitHub Desktop.
class E1 {
public static void main( String[] args){
// tenta realiza a atribuição a um int com o retorno de um método void
int i = new E1().metodoSemRetorno();
}
public void metodoSemRetorno(){};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment