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

14 lines
183 B
D

extern (C++)
{
double twice(double d)
{
return d * 2;
}
void* createFunction(R)(R function(double));
}
void main()
{
const f = createFunction(&twice);
}