您最多选择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. }