From 86c848de0b5d05dad38467e0cb56ceb65031fd65 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Thu, 6 Oct 2016 15:05:35 -0700 Subject: [PATCH] Added test for overloading. Test: make, hidl_test Bug: 31758541 Change-Id: Ia0fdad2f0b0155065a7dec5526ab5d14a9ec1f52 --- tests/foo/1.0/IFoo.hal | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/foo/1.0/IFoo.hal b/tests/foo/1.0/IFoo.hal index 3d823536e5..614f1e45aa 100644 --- a/tests/foo/1.0/IFoo.hal +++ b/tests/foo/1.0/IFoo.hal @@ -80,6 +80,7 @@ interface IFoo { }; doThis(float param); + doThis(uint32_t param); doThatAndReturnSomething(int64_t param) generates (int32_t result); doQuiteABit(int32_t a, int64_t b, float c, double d) generates (double something); doSomethingElse(int32_t[15] param) generates (int32_t[32] something);