mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
22 lines
315 B
D
22 lines
315 B
D
// EXTRA_CPP_SOURCES: c14203.cpp
|
|
|
|
|
|
/************************************************/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=14203
|
|
|
|
extern (C++) float func1();
|
|
|
|
void test14203()
|
|
{
|
|
assert(func1() == 73);
|
|
}
|
|
|
|
/************************************************/
|
|
|
|
int main()
|
|
{
|
|
test14203();
|
|
|
|
return 0;
|
|
}
|