| /* |
| REQUIRED_ARGS: |
| TEST_OUTPUT: |
| --- |
| fail_compilation/test314.d(19): Error: undefined identifier `renamed` |
| fail_compilation/test314.d(20): Error: undefined identifier `bug` |
| fail_compilation/test314.d(22): Error: undefined identifier `renamedpkg` |
| fail_compilation/test314.d(23): Error: undefined identifier `bugpkg` |
| --- |
| */ |
| |
| module test314; |
| |
| import imports.a314; |
| import imports.b314; |
| |
| void main() |
| { |
| renamed.bug("This should not work.\n"); |
| bug("This should not work.\n"); |
| |
| renamedpkg.bug("This should not work.\n"); |
| bugpkg("This should not work.\n"); |
| } |