From: Richard Smith Date: Fri, 31 Jan 2014 22:28:08 +0000 (+0000) Subject: Fix comment typo in test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=974eb1d090aece41e72c31772ea7266b1e31f6e7;p=clang Fix comment typo in test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200584 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Modules/Inputs/submodules/import-self-b.h b/test/Modules/Inputs/submodules/import-self-b.h index f88b56d5f0..9852094b10 100644 --- a/test/Modules/Inputs/submodules/import-self-b.h +++ b/test/Modules/Inputs/submodules/import-self-b.h @@ -1,10 +1,12 @@ +// FIXME: This import has no effect, because the submodule isn't built yet, and +// we don't map an @import to a #include in this case. @import import_self.c; #include "import-self-d.h" // FIXME: This should not work; names from 'a' should not be visible here. MyTypeA import_self_test_a; -// FIXME: This should work but does not; names from 'b' are not actually visible here. +// FIXME: This should work but does not; names from 'c' are not actually visible here. //MyTypeC import_self_test_c; MyTypeD import_self_test_d;