blob: 60d174624223d279eeab2c8e70d34bc0427607ff [file] [log] [blame]
Brian Carlstrom9f30b382011-08-28 22:41:38 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3class ProtoCompare2 {
4 int m1(short x, int y, long z) { return x + y + (int)z; }
5 int m2(short x, int y, long z) { return x + y + (int)z; }
6 int m3(long x, int y, short z) { return (int)x + y + z; }
7 long m4(long x, int y, short z) { return x + y + z; }
8}