diff options
Diffstat (limited to 'clang/test/Modules/import-decl.cpp')
| -rw-r--r-- | clang/test/Modules/import-decl.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/Modules/import-decl.cpp b/clang/test/Modules/import-decl.cpp index 900e090c0c5..56428b3eba6 100644 --- a/clang/test/Modules/import-decl.cpp +++ b/clang/test/Modules/import-decl.cpp @@ -8,3 +8,12 @@ int main() { return 0; } + +// <rdar://problem/15084587> +@interface A +-method; +@end + +void testImport(A *import) { + [import method]; +} |

