I have the following code written in Java and it c...
# announcements
b
I have the following code written in Java and it compiles without an error:
Copy code
public class Test {
    interface Operator<T> {
        String map(String col, T value);
    }

    static class TestOperator implements Operator<String> {
        @Override
        public String map(String col, String value) {
            return "test";
        }
    }

    public static void main(String[] args) {
        Operator testImp = new TestOperator();
        testImp.map("test", "test");
    }
}
```