Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. IntelliJ IDEA 12.1.4 Community Edition
  2. Fedora release 18 (Spherical Cow)
  3.  
  4. package com.insystems.gumball;
  5.  
  6. public class Gumball {
  7. /* functions here */
  8. }
  9.  
  10. package com.insystems.gumballtest;
  11.  
  12. import com.insystems.gumball;
  13.  
  14. public class Main {
  15.  
  16. public static void main(String[] args) {
  17. Gumball gb = new Gumball(5);
  18. }
  19. }
  20.  
  21. unused port statement
  22.  
  23. cannot resolve symbol gumball
  24.  
  25. import com.insystems.gumball.Gumball;
  26.  
  27. import com.insystems.gumball.*;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement