I'm stuck here. Not sure why this wouldn't be working.
package com.codegym.task.task15.task1529;
public class Plane implements CanFly {
private int passengers;
public Plane(int passengers) {
this.passengers = passengers;
}
@Override
public void fly() {
}
}