diff options
Diffstat (limited to 'test/Modules/Inputs')
-rw-r--r-- | test/Modules/Inputs/Modified/B.h | 3 | ||||
-rw-r--r-- | test/Modules/Inputs/Modified/module.map | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/test/Modules/Inputs/Modified/B.h b/test/Modules/Inputs/Modified/B.h index d1c8bb5e8e..f50dd80ca4 100644 --- a/test/Modules/Inputs/Modified/B.h +++ b/test/Modules/Inputs/Modified/B.h @@ -1,2 +1,3 @@ -#include "A.h" +@import A; + int getB(); diff --git a/test/Modules/Inputs/Modified/module.map b/test/Modules/Inputs/Modified/module.map index d9aed01430..50aaebc5c7 100644 --- a/test/Modules/Inputs/Modified/module.map +++ b/test/Modules/Inputs/Modified/module.map @@ -1,2 +1,5 @@ module A { header "A.h" } -module B { header "B.h" } +module B { + header "B.h" + export * +} |