Java - Interfaces
Find the error in this code snippet:
interface Shape {
void draw();
}
class Circle implements Shape {
void draw() { System.out.println("Circle drawn"); }
}