mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00

Moves the special handling of reading from stdin out of the semantic routines to the DMD driver itself. All references to `__stdin.d` have also been removed from the frontend implementation.
12 lines
339 B
D
12 lines
339 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail21045.d(12): Error: unable to read module `__stdin`
|
|
fail_compilation/fail21045.d(12): Expected '__stdin.d' or '__stdin/package.d' in one of the following import paths:
|
|
import path[0] = fail_compilation
|
|
import path[1] = $p:druntime/import$
|
|
import path[2] = $p:phobos$
|
|
---
|
|
*/
|
|
|
|
import __stdin;
|