I\'m having an error message that tells me this:
\'BankAccount.account\' does not contain a definition for \'withdraw\'.
Here\'s my code:
using S
You call base.withdraw(amt) in your savingaccount class, but the base class account does not define this method.
base.withdraw(amt)
savingaccount
account