You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pr150671.aj 250B

12345678910111213141516
  1. class C {
  2. private volatile int state;
  3. private int test;
  4. public void foo() {
  5. state = 0;
  6. test = 0;
  7. }
  8. }
  9. aspect FSM {
  10. declare error: set(* C.state): "Changing state";
  11. declare error: set(* C.test): "test";
  12. }