• Here we intended to code a constructor method header.
  • We accidentally inserted a return type void
  • This will actually compile okay (as an instance method)!
  • This means this class will not have the expected constructor
  • This can be a subtle bug
public void Rectangle(int aWidth, int aHeight)