summaryrefslogtreecommitdiff
path: root/test/Modules/method_pool_write.m
blob: b7f8ac64b4d3e130de3d154de33901ce82de3917 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: rm -rf %t
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -fsyntax-only -I %S/Inputs %s -verify
// expected-no-diagnostics

@import MethodPoolCombined;
@import MethodPoolString2;

void message_kindof_object(__kindof S2 *kindof_S2) {
  [kindof_S2 stringValue];
}