summaryrefslogtreecommitdiff
path: root/test/ThriftTest.thrift
diff options
context:
space:
mode:
authorYuxuan 'fishy' Wang <yuxuan.wang@reddit.com>2021-02-18 09:09:20 -0800
committerYuxuan 'fishy' Wang <fishywang@gmail.com>2021-02-22 10:02:48 -0800
commitb0b353191aeaa1b427d105892efa7facea6d4f1f (patch)
tree08a523fcec62a405eba32b7ef51068f85b35f90c /test/ThriftTest.thrift
parent6813b1914bf32b8d37d10207f10a092064ba36d7 (diff)
downloadthrift-b0b353191aeaa1b427d105892efa7facea6d4f1f.tar.gz
Move ConflictingNamesTest to lib/go/test
Client: go Also add missing copyright header for files added in https://github.com/apache/thrift/pull/2307.
Diffstat (limited to 'test/ThriftTest.thrift')
-rw-r--r--test/ThriftTest.thrift14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/ThriftTest.thrift b/test/ThriftTest.thrift
index c88187c54..ac49aee01 100644
--- a/test/ThriftTest.thrift
+++ b/test/ThriftTest.thrift
@@ -411,17 +411,3 @@ struct StructB {
struct OptionalSetDefaultTest {
1: optional set<string> with_default = [ "test" ]
}
-
-service ConflictingNamesTest {
- /**
- * Use some names that could conflict with the compiler code as args
- * to make sure that the compiler handled them correctly.
- */
- void testNameConflicts(
- // 1: string args, // args is already a reserved keyword in thrift compiler
- // 2: string result, // result will cause problems in compiled netstd code
- 3: string meta,
- 4: string r,
- 5: string err,
- )
-}