Example

public interface testInterface {
}


Solution
Capitalize the first character in the interface name.

public interface TestInterface {
}