From 88476c157b15633b8bcc2e6332bb40862776160d Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Tue, 27 Sep 2016 14:54:20 -0700 Subject: [PATCH] Verify that method arguments and results can share the same name. Bug: 30778622 Test: hidl_test, hidl_test_java Change-Id: Idb35a03337010c1fb63c2896f216392398e03e0c --- tests/foo/1.0/IFoo.hal | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/foo/1.0/IFoo.hal b/tests/foo/1.0/IFoo.hal index a073e54fb5..d0119ec3a0 100644 --- a/tests/foo/1.0/IFoo.hal +++ b/tests/foo/1.0/IFoo.hal @@ -95,4 +95,6 @@ interface IFoo { transpose(StringMatrix5x3 in) generates (StringMatrix3x5 out); transpose2(ThreeStrings[5] in) generates (FiveStrings[3] out); + + sendVec(vec data) generates (vec data); };