2012-11-30 07:55:25 +08:00
|
|
|
// RUN: rm -rf %t
|
|
|
|
// RUN: %clang_cc1 -fmodule-cache-path %t -fmodules -F %S/Inputs -DgetModuleVersion="epic fail" %s 2>&1 | FileCheck %s
|
|
|
|
|
|
|
|
@__experimental_modules_import Module;
|
|
|
|
@__experimental_modules_import DependsOnModule;
|
|
|
|
|
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
|
|
|
|
// CHECK: note: expanded from macro 'getModuleVersion'
|
|
|
|
// 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:
|