org.immutables.fixture.modifiable.GenericMods Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of value-fixture Show documentation
Show all versions of value-fixture Show documentation
Module that contains all tests for the code generation capability
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();
}