1*67e74705SXin Li// RUN: rm -rf %t 2*67e74705SXin Li// RUN: not %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -F %S/Inputs -DgetModuleVersion="epic fail" %s 2>&1 | FileCheck %s 3*67e74705SXin Li 4*67e74705SXin Li@import Module; 5*67e74705SXin Li@import DependsOnModule; 6*67e74705SXin Li 7*67e74705SXin Li// CHECK: While building module 'Module' imported from 8*67e74705SXin Li// CHECK: error: expected ';' after top level declarator 9*67e74705SXin Li// CHECK: note: expanded from here 10*67e74705SXin Li// CHECK: fatal error: could not build module 'Module' 11*67e74705SXin Li// CHECK: While building module 'DependsOnModule' imported from 12*67e74705SXin Li// CHECK: fatal error: could not build module 'Module' 13*67e74705SXin Li// CHECK-NOT: error: 14