blob: 60d174624223d279eeab2c8e70d34bc0427607ff [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
class ProtoCompare2 {
int m1(short x, int y, long z) { return x + y + (int)z; }
int m2(short x, int y, long z) { return x + y + (int)z; }
int m3(long x, int y, short z) { return (int)x + y + z; }
long m4(long x, int y, short z) { return x + y + z; }
}