dmd/compiler/test/runnable_cxx/test14203.d
2022-07-09 18:53:07 +02:00

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;
}