diff options
Diffstat (limited to 'test/Modules/Inputs/namespaces-right.h')
-rw-r--r-- | test/Modules/Inputs/namespaces-right.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/Modules/Inputs/namespaces-right.h b/test/Modules/Inputs/namespaces-right.h index 7e7286e..77f54ea 100644 --- a/test/Modules/Inputs/namespaces-right.h +++ b/test/Modules/Inputs/namespaces-right.h @@ -1,4 +1,11 @@ -@__experimental_modules_import namespaces_top; +@import namespaces_top; + +double &global(double); +double &global2(double); + +namespace LookupBeforeImport { + double &f(double); +} namespace N2 { } |