Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yatharth0045/1942ae9727f3907e2a5e3b9ebbc52a79 to your computer and use it in GitHub Desktop.
Save Yatharth0045/1942ae9727f3907e2a5e3b9ebbc52a79 to your computer and use it in GitHub Desktop.
@FunctionalInterface
interface FuncInt1{
void abstractMethod(String var);
}
@FunctionalInterface
interface Funcint2 extends FuncInt1{
void abstractMethod(String var);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment