final class FinalTest 
{
  final static int KONSTANTE = 17;

  final int methode(final int i)
  {
    KONSTANTE *= i;	// nicht erlaubt
    // i += 38;		// nicht erlaubt
    return i + KONSTANTE + 4;
  }
}

