2012-11-30 07:55:25 +08:00
|
|
|
// RUN: rm -rf %t
|
2013-07-05 00:16:58 +08:00
|
|
|
// RUN: not %clang_cc1 -fmodules-cache-path=%t -fmodules -F %S/Inputs -DgetModuleVersion="epic fail" %s 2>&1 | FileCheck %s
|
2012-11-30 07:55:25 +08:00
|
|
|
|
2012-12-12 06:11:52 +08:00
|
|
|
@import Module;
|
|
|
|
@import DependsOnModule;
|
2012-11-30 07:55:25 +08:00
|
|
|
|
2012-12-01 02:38:50 +08:00
|
|
|
// CHECK: While building module 'Module' imported from
|
2012-11-30 07:55:25 +08:00
|
|
|
// CHECK: error: expected ';' after top level declarator
|
2012-12-05 19:04:55 +08:00
|
|
|
// CHECK: note: expanded from here
|
2012-11-30 07:55:25 +08:00
|
|
|
// CHECK: fatal error: could not build module 'Module'
|
2012-12-01 02:38:50 +08:00
|
|
|
// CHECK: While building module 'DependsOnModule' imported from
|
2012-11-30 07:55:25 +08:00
|
|
|
// CHECK: fatal error: could not build module 'Module'
|
|
|
|
// CHECK-NOT: error:
|