diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-01-31 22:28:08 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-01-31 22:28:08 +0000 |
| commit | 6d7a5637f12323c5a692a31d49dd36043a372853 (patch) | |
| tree | 190d940c1633f43cd45712e4ed739d6c31299ae0 | |
| parent | 277f9061fcf25ee6e53e81b2d20bf093ad083f94 (diff) | |
| download | bcm5719-llvm-6d7a5637f12323c5a692a31d49dd36043a372853.tar.gz bcm5719-llvm-6d7a5637f12323c5a692a31d49dd36043a372853.zip | |
Fix comment typo in test.
llvm-svn: 200584
| -rw-r--r-- | clang/test/Modules/Inputs/submodules/import-self-b.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/test/Modules/Inputs/submodules/import-self-b.h b/clang/test/Modules/Inputs/submodules/import-self-b.h index f88b56d5f08..9852094b10b 100644 --- a/clang/test/Modules/Inputs/submodules/import-self-b.h +++ b/clang/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; |

