Java - Classes and Objects
Find the error in the following code snippet:
class Car {
String model;
Car(String m) {
model = m;
}
}
public class Test {
public static void main(String[] args) {
Car c = new Car;
}
}