mirror of
https://github.com/dlang/dmd.git
synced 2025-05-06 19:16:03 +03:00
25 lines
332 B
D
25 lines
332 B
D
|
|
|
|
extern(C++, "true")
|
|
{
|
|
}
|
|
|
|
extern(C++, "__traits")
|
|
{
|
|
}
|
|
|
|
extern(C++, "foo")
|
|
{
|
|
}
|
|
|
|
int foo; // no name clashing with above namespace
|
|
|
|
extern(C++, "std", "chrono")
|
|
{
|
|
void func();
|
|
}
|
|
|
|
version(Windows) static assert(func.mangleof == "?func@chrono@std@@YAXXZ");
|
|
else static assert(func.mangleof == "_ZNSt6chrono4funcEv");
|
|
|
|
|