選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12345678910111213
  1. public class Declares {
  2. public void m() { // should be error on this line
  3. }
  4. }
  5. aspect Checker {
  6. declare error: execution(* m()): "too short method name";
  7. declare error: execution(* n()): "too short method name"; // no effect
  8. //declare warning: exec: "bar";
  9. }