Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

NoReturnStatementSimple.java 223B

123456
  1. /** error falls to javac to detect - confirm detected in ajc */
  2. public class NoReturnStatementSimple {
  3. static String noReturn() { } // compile error here detected by javac
  4. public static void main(String[] args) { }
  5. }