blob: b7f8ac64b4d3e130de3d154de33901ce82de3917 [file] [log] [blame]
Manman Rena0f31a02016-04-29 19:04:05 +00001// RUN: rm -rf %t
2// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -fsyntax-only -I %S/Inputs %s -verify
3// expected-no-diagnostics
4
5@import MethodPoolCombined;
6@import MethodPoolString2;
7
8void message_kindof_object(__kindof S2 *kindof_S2) {
9 [kindof_S2 stringValue];
10}
11