in example-problems/no-such-method-error-signature-mismatch/src/main/java/io/grpc/internal/App.java [26:32]
public static void main(String[] args) {
Map<String, Object> choice = ImmutableMap.of("clientLanguage", ImmutableList.of("en"));
// Throws java.lang.NoSuchMethodError when Guava 20.0 is in the class path:
// com.google.common.base.Verify.verify(ZLjava/lang/String;Ljava/lang/Object;)V
DnsNameResolver.maybeChooseServiceConfig(choice, new Random(), "localhost");
}