mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
8 lines
178 B
D
8 lines
178 B
D
// EXTRA_FILES: test15519_x.d
|
|
import test15519_x: NS = ns; // fails
|
|
//import test15519_x; alias test15519_x.ns NS; // works
|
|
|
|
extern(C++, ns)
|
|
{
|
|
class Y { NS.X v; }
|
|
}
|