Brian Carlstrom | 9f30b38 | 2011-08-28 22:41:38 -0700 | [diff] [blame^] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
2 | |||||
3 | class 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 | } |