Home | History | Annotate | Download | only in shadows
      1 package org.robolectric.annotation.processing.shadows;
      2 
      3 import org.robolectric.annotation.Implements;
      4 import com.example.objects.ParameterizedDummy;
      5 
      6 @Implements(ParameterizedDummy.class)
      7 public class ShadowImplementsWithParameterMismatch<N extends Number,T> {
      8 }
      9