mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
207 B
D
11 lines
207 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/cppmangle2.d(9): Error: namespace `cppmangle2.ns` conflicts with variable `cppmangle2.ns` at fail_compilation/cppmangle2.d(8)
|
|
---
|
|
*/
|
|
|
|
enum ns = "ns";
|
|
extern(C++, ns)
|
|
{
|
|
}
|