blob: 63dee81429f58c370feb664584f659dc137d88ce [file]
package testsubjects;
public class WidePrimitives
{
public double doMath(long first, double second, int third, long fourth)
{
return first * second + third * fourth;
}
}