Advertisement
Kosheen

Create instance

Jan 18th, 2023
979
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class Main {
  2.  
  3.     public static void main(String[] args) {
  4.     // write your code here
  5.         new Inner(); // cannot be referenced from static context
  6.     }
  7.     void callInner() {
  8.         new Inner();
  9.     }
  10.     class Inner {}
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement