You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
299 B
12 lines
299 B
4 months ago
|
// 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];
|
||
|
}
|
||
|
|