commit | 3ea9e33ea25e0c2b12db56418ba3f994eb662c04 | [log] [tgz] |
---|---|---|
author | Pirama Arumuga Nainar <pirama@google.com> | Wed Apr 08 08:57:32 2015 -0700 |
committer | Pirama Arumuga Nainar <pirama@google.com> | Wed Apr 08 08:57:32 2015 -0700 |
tree | 637e49f749220fd9b0141bff6bbe5ee972fdedd6 | |
parent | ce7e695396b9715fd06e18f7412c860a313661cd [diff] [blame] |
Update aosp/master clang for rebase to r233350 Change-Id: I12d4823f10bc9e445b8b86e7721b71f98d1df442
diff --git a/test/Modules/declare-use1.cpp b/test/Modules/declare-use1.cpp index 5fc4336..adba595 100644 --- a/test/Modules/declare-use1.cpp +++ b/test/Modules/declare-use1.cpp
@@ -5,4 +5,5 @@ #include "e.h" #include "f.h" // expected-error {{module XG does not depend on a module exporting 'f.h'}} #include "i.h" -const int g2 = g1 + e + f + aux_i; +#include "sub.h" +const int g2 = g1 + e + f + aux_i + sub;