Java - Inheritance
Find the error in this code:
abstract class Vehicle {
abstract void start();
}
class Car extends Vehicle {
void start() { System.out.println("Car started"); }
}
class Bike extends Vehicle {
// No start() method implemented
}