C Sharp (C#) - Inheritance
Identify the error in this code snippet:
sealed class Animal {
public void Speak() { Console.WriteLine("Animal speaks"); }
}
class Dog : Animal {
public void Speak() { Console.WriteLine("Dog barks"); }
}