class PotentialVoter {
  Integer age;
  
  int vote(int candidate) {
    [pre: age < 18]
    [pre: candidate > 0]
    // rest of stuff that we do not interpret
     return 0;
  }
}