blob: a0f34bc99dea8532d05f622e703582e1f8e485d0 [file] [log] [blame]
// Annotation on the return value of Character.toString caused
// two annotations from the same hierarchy.
// https://github.com/typetools/checker-framework/issues/1356
public class CharacterToString {
void m() {
String s = Character.toString('a');
}
}