Java - Abstraction
Find the error in this Java code:
abstract class Vehicle {
abstract void move();
}
class Bike extends Vehicle {
void move() {
System.out.println("Bike is moving");
}
}
class Test {
public static void main(String[] args) {
Vehicle v;
v.move();
}
}