blob: 43fa83e282d764ea7926f26662237d10ee50f74a [file] [log] [blame]
package org.robolectric.internal.bytecode.testing;
import org.robolectric.annotation.internal.Instrument;
@SuppressWarnings("UnusedDeclaration")
@Instrument
public class AClassWithMethodReturningDouble {
public double normalMethodReturningDouble(double doubleArg) {
return doubleArg + 1;
}
}