blob: 1b2b7c8e87ba2b89b8bd96a818a60becd7460ae9 [file] [log] [blame]
Mark Sleed7173472006-10-25 19:52:10 +00001cpp_namespace test.stress
Marc Slemko3ea00332006-08-17 01:11:13 +00002
3service Service {
4
5 void echoVoid(),
Mark Sleed7173472006-10-25 19:52:10 +00006 byte echoByte(1: byte arg),
7 i32 echoI32(1: i32 arg),
8 i64 echoI64(1: i64 arg),
9 string echoString(1: string arg),
10 list<byte> echoList(1: list<byte> arg),
11 set<byte> echoSet(1: set<byte> arg),
12 map<byte, byte> echoMap(1: map<byte, byte> arg),
Marc Slemko3ea00332006-08-17 01:11:13 +000013}
14