diff options
Diffstat (limited to 'clang/test/Modules/method_pool.m')
-rw-r--r-- | clang/test/Modules/method_pool.m | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Modules/method_pool.m b/clang/test/Modules/method_pool.m index 6fd74b0885f..f7d5ae700c9 100644 --- a/clang/test/Modules/method_pool.m +++ b/clang/test/Modules/method_pool.m @@ -47,6 +47,10 @@ void testMethod3Again(id object) { char *str = [object method3]; // okay: only found in MethodPoolB.Sub } +void testMethod6(id object) { + [object method6]; +} + @import MethodPoolA.Sub; void testMethod3AgainAgain(id object) { |