All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.immutables.fixture.modifiable.GenericMods Maven / Gradle / Ivy

There is a newer version: 2.10.1
Show newest version
package org.immutables.fixture.modifiable;

import org.immutables.value.Value;

interface Supertype {
  int a();

  int c();
}

// Compilation test for generics and wildcards when generating
// from supertype in modifiable and immutable generated types
@Value.Immutable
@Value.Modifiable
public interface GenericMods extends Supertype {
  T b();

  @Override
  int c();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy