blob: bf2d52947e920612f4c645fcb1e930d4d982c908 [file] [log] [blame]
Douglas Gregor5e3f9222011-12-08 17:01:29 +00001
2// RUN: rm -rf %t
Douglas Gregorc514a8a2012-01-03 15:21:29 +00003// RUN: %clang_cc1 -Wauto-import -fmodule-cache-path %t -fmodules -F %S/Inputs %s -verify
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00004// expected-no-diagnostics
Douglas Gregor5e3f9222011-12-08 17:01:29 +00005
6// Note: transitively imports Module.Sub2.
Douglas Gregor1b257af2012-12-11 22:11:52 +00007@import Module.Sub;
Douglas Gregor5e3f9222011-12-08 17:01:29 +00008
9int getValue() {
10 return *Module_Sub + *Module_Sub2;
11}
12