Skip to content

Instantly share code, notes, and snippets.

@kunals201
Last active May 1, 2018 11:45
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 kunals201/863723b0c49ee352bf56faf270a45f6f to your computer and use it in GitHub Desktop.
Save kunals201/863723b0c49ee352bf56faf270a45f6f to your computer and use it in GitHub Desktop.
NoDefFoundErrorProblem
package pack2;
import pack1.Demo1;
public class Demo2 {
public void test2()
{
System.out.println("pack2.Demo2 method");
Demo1 obj = new Demo1();
obj.test();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment