Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class Switch {
  2. public static void main(String[] args) {
  3. switch(42) {
  4. case (1/0):
  5. return;
  6. default:
  7. return;
  8. }
  9. }
  10. }
  11.  
  12. Switch.java:4: error: constant expression required
  13. case (1/0):
  14. ^
  15. 1 error
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement