This works: ``` parser.parse("java.lang.Long", new GenericType<Class<?>>() {}); ``` but this doesn't: ``` parser.parse("java.lang.Long", new GenericType<Class<Long>>() {}); ```
This works:
but this doesn't: